
/*
TopBox is derived from Nivo Lightbox v1.3.1, created by Dev7studios:
http://dev7studios.com/nivo-lightbox

TopBox is updated for jQuery 3 and has additional features / content support.
Maintained by William Woodgate

TopBox homepage:
https://willwoodgate.com/projects/topbox/

Free to use and abuse under the MIT license.
http://www.opensource.org/licenses/mit-license.php
*/
/* Core CSS to make the lightbox work */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99995;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.topbox_overlay,
.topbox_overlay *,
.topbox_overlay *:before,
.topbox_overlay *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.topbox_fill {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_overlay.topbox_open {
  visibility: visible;
  opacity: 1;
}

.topbox_wrapper {
  position: absolute;
  z-index: 99996;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.topbox_content {
  position: relative;
  z-index: 99998;
  height: 80vh;
  width: 80vw;
  display: flex;
  align-items: center;
}

.topbox_title_wrap {
  position: relative;
  z-index: 99998;
}

.topbox_nav {
  display: none;
}

.topbox_prev,
.topbox_next,
.topbox_close {
  position: absolute;
  z-index: 99999;
  background: none;
  border: none;
  cursor: pointer;
}

.topbox_prev {
  left: 0;
}

.topbox_next {
  right: 0;
}

.topbox_close {
  top: 0;
  right: 0;
}

.topbox_close_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99997;
}

.topbox_image {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
  margin: auto;
}

.topbox_html5_audio_wrap {
  width: 100%;
}

.topbox_html5audio {
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

.topbox_html5_video_wrap {
  width: 100%;
}

.topbox_html5video {
  margin: auto;
  max-width: 100%;
  height: auto;
}

.topbox_iframe_wrap,
.topbox_iframe,
.topbox_pdf_wrap,
.topbox_pdf {
  width: 100%;
  height: 100%;
  display: block;
}

.topbox_pdf_mobile_message {
  display: inline-block;
  margin: auto;
}

.topbox_embedded_web_video {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
  overflow: hidden;
}

.topbox_embedded_web_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_video_iframe_wrap {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
}

iframe.topbox_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
Fix for video sizing, if using the Plyr plugin for custom video controls
https://github.com/sampotts/plyr
*/
.topbox_content .plyr {
  min-width: 100%;
}

.topbox_inline,
.topbox_ajax {
  max-height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}

.topbox_error {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.topbox_error p {
  display: table-cell;
  vertical-align: middle;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* slideLeft / slideRight / slideUp / slideDown */
.topbox_notouch .topbox_effect_slideLeft .topbox_content,
.topbox_notouch .topbox_effect_slideRight .topbox_content,
.topbox_notouch .topbox_effect_slideUp .topbox_content,
.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.topbox_notouch .topbox_effect_slideLeft .topbox_content {
  -webkit-transform: translateX(-20%);
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
}

.topbox_notouch .topbox_effect_slideRight .topbox_content {
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}

.topbox_notouch .topbox_effect_slideLeft.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideRight.topbox_open .topbox_content {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
}

.topbox_notouch .topbox_effect_slideUp .topbox_content {
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%);
}

.topbox_notouch .topbox_effect_slideUp.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideDown.topbox_open .topbox_content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Our default lightbox skin (darkroom) */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_skin_darkroom .topbox_fill {
  background: rgba(0, 0, 0, 0.8);
}

.topbox_skin_darkroom .topbox_pdf_mobile_message {
  color: #FFFFFF;
  font-size: 18px;
}

.topbox_skin_darkroom .topbox_pdf_mobile_message a,
.topbox_skin_darkroom .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_darkroom .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_darkroom .topbox_prev,
.topbox_skin_darkroom .topbox_next,
.topbox_skin_darkroom .topbox_close {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 45px;
  opacity: 0.5;
  transition: all 300ms ease-in;
  padding: 2vw;
  line-height: 1;
}

.topbox_skin_darkroom .topbox_close {
  margin-top: -10px;
  font-size: 55px;
}

.topbox_skin_darkroom .topbox_prev:hover,
.topbox_skin_darkroom .topbox_next:hover,
.topbox_skin_darkroom .topbox_close:hover {
  opacity: 1;
}

.topbox_skin_darkroom .topbox_prev:before {
  content: "←"
}

.topbox_skin_darkroom .topbox_next:before {
  content: "→"
}

.topbox_skin_darkroom .topbox_close:before {
  content: "×";
}

.topbox_skin_darkroom .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}
/*!* froala_editor v2.9.6 (https://www.froala.com/wysiwyg-editor)* License https://froala.com/wysiwyg-editor/terms/* Copyright 2014-2019 Froala Labs*/.clearfix::after{clear:both;display:block;content:"";height:0}.hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.fr-img-caption.fr-rounded img,img.fr-rounded{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-img-caption.fr-bordered img,img.fr-bordered{border:solid 5px #ccc}img.fr-bordered{box-sizing:content-box}.fr-img-caption.fr-bordered img{box-sizing:border-box}.fr-img-caption.fr-shadow img,img.fr-shadow{box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 1px 1px rgba(0,0,0,.16)}.fr-view{word-wrap:break-word}.fr-view span[style~="color:"] a{color:inherit}.fr-view strong{font-weight:700}.fr-view table{border:0;border-collapse:collapse;empty-cells:show;max-width:100%}.fr-view table td{min-width:5px}.fr-view table.fr-dashed-borders td,.fr-view table.fr-dashed-borders th{border-style:dashed}.fr-view table.fr-alternate-rows tbody tr:nth-child(2n){background:#f5f5f5}.fr-view table td,.fr-view table th{border:1px solid #ddd}.fr-view table td:empty,.fr-view table th:empty{height:20px}.fr-view table td.fr-highlighted,.fr-view table th.fr-highlighted{border:1px double red}.fr-view table td.fr-thick,.fr-view table th.fr-thick{border-width:2px}.fr-view table th{background:#e6e6e6}.fr-view hr{clear:both;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;page-break-after:always}.fr-view .fr-file{position:relative}.fr-view .fr-file::after{position:relative;content:"\1F4CE";font-weight:400}.fr-view pre{white-space:pre-wrap;word-wrap:break-word;overflow:visible}.fr-view[dir=rtl] blockquote{border-left:0;border-right:solid 2px #5e35b1;margin-right:0;padding-right:5px;padding-left:0}.fr-view[dir=rtl] blockquote blockquote{border-color:#00bcd4}.fr-view[dir=rtl] blockquote blockquote blockquote{border-color:#43a047}.fr-view blockquote{border-left:solid 2px #5e35b1;margin-left:0;padding-left:5px;color:#5e35b1}.fr-view blockquote blockquote{border-color:#00bcd4;color:#00bcd4}.fr-view blockquote blockquote blockquote{border-color:#43a047;color:#43a047}.fr-view span.fr-emoticon{font-weight:400;font-family:"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Segoe UI Symbol","Android Emoji",EmojiSymbols;display:inline;line-height:0}.fr-view span.fr-emoticon.fr-emoticon-img{background-repeat:no-repeat!important;font-size:inherit;height:1em;width:1em;min-height:20px;min-width:20px;display:inline-block;margin:-.1em .1em .1em;line-height:1;vertical-align:middle}.fr-view .fr-text-gray{color:#aaa!important}.fr-view .fr-text-bordered{border-top:solid 1px #222;border-bottom:solid 1px #222;padding:10px 0}.fr-view .fr-text-spaced{letter-spacing:1px}.fr-view .fr-text-uppercase{text-transform:uppercase}.fr-view .fr-class-highlighted{background-color:#ff0}.fr-view .fr-class-code{border-color:#ccc;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background:#f5f5f5;padding:10px;font-family:"Courier New",Courier,monospace}.fr-view .fr-class-transparency{opacity:.5}.fr-view img{position:relative;max-width:100%}.fr-view img.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view img.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view img.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view img.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}.fr-view img.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}.fr-view img.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}.fr-view span.fr-img-caption{position:relative;max-width:100%}.fr-view span.fr-img-caption.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view span.fr-img-caption.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view span.fr-img-caption.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view span.fr-img-caption.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}.fr-view span.fr-img-caption.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}.fr-view span.fr-img-caption.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}.fr-view .fr-video{text-align:center;position:relative}.fr-view .fr-video.fr-rv{padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.fr-view .fr-video.fr-rv embed,.fr-view .fr-video.fr-rv object,.fr-view .fr-video.fr-rv>iframe{position:absolute!important;top:0;left:0;width:100%;height:100%}.fr-view .fr-video>*{box-sizing:content-box;max-width:100%;border:0}.fr-view .fr-video.fr-dvb{display:block;clear:both}.fr-view .fr-video.fr-dvb.fr-fvl{text-align:left}.fr-view .fr-video.fr-dvb.fr-fvr{text-align:right}.fr-view .fr-video.fr-dvi{display:inline-block}.fr-view .fr-video.fr-dvi.fr-fvl{float:left}.fr-view .fr-video.fr-dvi.fr-fvr{float:right}.fr-view a.fr-strong{font-weight:700}.fr-view a.fr-green{color:green}.fr-view .fr-img-caption{text-align:center}.fr-view .fr-img-caption .fr-img-wrap{padding:0;display:inline-block;margin:auto;text-align:center;width:100%}.fr-view .fr-img-caption .fr-img-wrap img{display:block;margin:auto;width:100%}.fr-view .fr-img-caption .fr-img-wrap>span{margin:auto;display:block;padding:5px 5px 10px;font-size:14px;font-weight:initial;box-sizing:border-box;-webkit-opacity:.9;-moz-opacity:.9;opacity:.9;-ms-filter:"alpha(Opacity=0)";width:100%;text-align:center}.fr-view button.fr-rounded,.fr-view input.fr-rounded,.fr-view textarea.fr-rounded{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view button.fr-large,.fr-view input.fr-large,.fr-view textarea.fr-large{font-size:24px}a.fr-view.fr-strong{font-weight:700}a.fr-view.fr-green{color:green}img.fr-view{position:relative;max-width:100%}img.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}img.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}img.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}img.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}img.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}img.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}span.fr-img-caption.fr-view{position:relative;max-width:100%}span.fr-img-caption.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}span.fr-img-caption.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}span.fr-img-caption.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}span.fr-img-caption.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}span.fr-img-caption.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}span.fr-img-caption.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}/*!* froala_editor v2.9.6 (https://www.froala.com/wysiwyg-editor)* License https://froala.com/wysiwyg-editor/terms/* Copyright 2014-2019 Froala Labs*/.clearfix::after{clear:both;display:block;content:"";height:0}.hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.fr-element img{cursor:pointer}.fr-image-resizer{position:absolute;border:solid 1px #1e88e5;display:none;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;box-sizing:content-box}.fr-image-resizer.fr-active{display:block}.fr-image-resizer .fr-handler{display:block;position:absolute;background:#1e88e5;border:solid 1px #fff;z-index:4;box-sizing:border-box}.fr-image-resizer .fr-handler.fr-hnw{cursor:nw-resize}.fr-image-resizer .fr-handler.fr-hne{cursor:ne-resize}.fr-image-resizer .fr-handler.fr-hsw{cursor:sw-resize}.fr-image-resizer .fr-handler.fr-hse{cursor:se-resize}.fr-image-resizer .fr-handler{width:12px;height:12px}.fr-image-resizer .fr-handler.fr-hnw{left:-6px;top:-6px}.fr-image-resizer .fr-handler.fr-hne{right:-6px;top:-6px}.fr-image-resizer .fr-handler.fr-hsw{left:-6px;bottom:-6px}.fr-image-resizer .fr-handler.fr-hse{right:-6px;bottom:-6px}@media (min-width:1200px){.fr-image-resizer .fr-handler{width:10px;height:10px}.fr-image-resizer .fr-handler.fr-hnw{left:-5px;top:-5px}.fr-image-resizer .fr-handler.fr-hne{right:-5px;top:-5px}.fr-image-resizer .fr-handler.fr-hsw{left:-5px;bottom:-5px}.fr-image-resizer .fr-handler.fr-hse{right:-5px;bottom:-5px}}.fr-image-overlay{position:fixed;top:0;left:0;bottom:0;right:0;z-index:2147483640;display:none}.fr-popup .fr-image-upload-layer{border:dashed 2px #bdbdbd;padding:25px 0;position:relative;font-size:14px;letter-spacing:1px;line-height:140%;text-align:center}.fr-popup .fr-image-upload-layer:hover{background:#ebebeb}.fr-popup .fr-image-upload-layer.fr-drop{background:#ebebeb;border-color:#1e88e5}.fr-popup .fr-image-upload-layer .fr-form{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"alpha(Opacity=0)";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2147483640;overflow:hidden;margin:0!important;padding:0!important;width:100%!important}.fr-popup .fr-image-upload-layer .fr-form input{cursor:pointer;position:absolute;right:0;top:0;bottom:0;width:500%;height:100%;margin:0;font-size:400px}.fr-popup .fr-image-progress-bar-layer>h3{font-size:16px;margin:10px 0;font-weight:400}.fr-popup .fr-image-progress-bar-layer>div.fr-action-buttons{display:none}.fr-popup .fr-image-progress-bar-layer>div.fr-loader{background:#bcdbf7;height:10px;width:100%;margin-top:20px;overflow:hidden;position:relative}.fr-popup .fr-image-progress-bar-layer>div.fr-loader span{display:block;height:100%;width:0;background:#1e88e5;-webkit-transition:width .2s ease 0s;-moz-transition:width .2s ease 0s;-ms-transition:width .2s ease 0s;-o-transition:width .2s ease 0s}.fr-popup .fr-image-progress-bar-layer>div.fr-loader.fr-indeterminate span{width:30%!important;position:absolute;top:0;animation:loading 2s linear infinite}.fr-popup .fr-image-progress-bar-layer.fr-error>div.fr-loader{display:none}.fr-popup .fr-image-progress-bar-layer.fr-error>div.fr-action-buttons{display:block}.fr-image-size-layer .fr-image-group .fr-input-line{width:calc(50% - 5px);display:inline-block}.fr-image-size-layer .fr-image-group .fr-input-line+.fr-input-line{margin-left:10px}.fr-uploading{-webkit-opacity:.4;-moz-opacity:.4;opacity:.4;-ms-filter:"alpha(Opacity=0)"}@keyframes loading{from{left:-25%}to{left:100%}}/*!* froala_editor v2.9.6 (https://www.froala.com/wysiwyg-editor)* License https://froala.com/wysiwyg-editor/terms/* Copyright 2014-2019 Froala Labs*/.clearfix::after{clear:both;display:block;content:"";height:0}.hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.fr-element table td.fr-selected-cell,.fr-element table th.fr-selected-cell{border:1px double #1e88e5}.fr-element table tr{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-element table td,.fr-element table th{user-select:text;-o-user-select:text;-moz-user-select:text;-khtml-user-select:text;-webkit-user-select:text;-ms-user-select:text}.fr-element .fr-no-selection table td,.fr-element .fr-no-selection table th{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-table-resizer{cursor:col-resize;position:absolute;z-index:3;display:none}.fr-table-resizer.fr-moving{z-index:2}.fr-table-resizer div{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"alpha(Opacity=0)";border-right:1px solid #1e88e5}.fr-no-selection{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-popup .fr-table-colors-hex-layer{width:100%;margin:0;padding:10px}.fr-popup .fr-table-colors-hex-layer .fr-input-line{float:left;width:calc(100% - 50px);padding:8px 0 0}.fr-popup .fr-table-colors-hex-layer .fr-action-buttons{float:right;width:50px}.fr-popup .fr-table-colors-hex-layer .fr-action-buttons button{background-color:#1e88e5;color:#fff;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;font-size:13px;height:32px}.fr-popup .fr-table-colors-hex-layer .fr-action-buttons button:hover{background-color:#166dba;color:#fff}.fr-popup .fr-table-size .fr-table-size-info{text-align:center;font-size:14px;padding:8px}.fr-popup .fr-table-size .fr-select-table-size{line-height:0;padding:0 5px 5px;white-space:nowrap}.fr-popup .fr-table-size .fr-select-table-size>span{display:inline-block;padding:0 4px 4px 0;background:0 0}.fr-popup .fr-table-size .fr-select-table-size>span>span{display:inline-block;width:18px;height:18px;border:1px solid #ddd}.fr-popup .fr-table-size .fr-select-table-size>span.hover{background:0 0}.fr-popup .fr-table-size .fr-select-table-size>span.hover>span{background:rgba(30,136,229,.3);border:solid 1px #1e88e5}.fr-popup .fr-table-size .fr-select-table-size .new-line::after{clear:both;display:block;content:"";height:0}.fr-popup.fr-above .fr-table-size .fr-select-table-size>span{display:inline-block!important}.fr-popup .fr-table-colors-buttons{margin-bottom:5px}.fr-popup .fr-table-colors{line-height:0;display:block}.fr-popup .fr-table-colors>span{display:inline-block;width:32px;height:32px;position:relative;z-index:1}.fr-popup .fr-table-colors>span>i{text-align:center;line-height:32px;height:32px;width:32px;font-size:13px;position:absolute;bottom:0;cursor:default;left:0}.fr-popup .fr-table-colors>span:focus{outline:1px solid #222;z-index:2}.fr-popup.fr-desktop .fr-table-size .fr-select-table-size>span>span{width:12px;height:12px}.fr-insert-helper{position:absolute;z-index:9999;white-space:nowrap}/*!* froala_editor v2.9.6 (https://www.froala.com/wysiwyg-editor)* License https://froala.com/wysiwyg-editor/terms/* Copyright 2014-2019 Froala Labs*/.clearfix::after{clear:both;display:block;content:"";height:0}.hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.fr-line-breaker{cursor:text;border-top:1px solid #1e88e5;position:fixed;z-index:2;display:none}.fr-line-breaker.fr-visible{display:block}.fr-line-breaker a.fr-floating-btn{position:absolute;left:calc(50% - (32px / 2));top:-16px}/*!* froala_editor v2.9.6 (https://www.froala.com/wysiwyg-editor)* License https://froala.com/wysiwyg-editor/terms/* Copyright 2014-2019 Froala Labs*/.clearfix::after{clear:both;display:block;content:"";height:0}.hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.fr-element .fr-video{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-element .fr-video::after{position:absolute;content:'';z-index:1;top:0;left:0;right:0;bottom:0;cursor:pointer;display:block;background:rgba(0,0,0,0)}.fr-element .fr-video.fr-active>*{z-index:2;position:relative}.fr-element .fr-video>*{box-sizing:content-box;max-width:100%;border:0}.fr-box .fr-video-resizer{position:absolute;border:solid 1px #1e88e5;display:none;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-box .fr-video-resizer.fr-active{display:block}.fr-box .fr-video-resizer .fr-handler{display:block;position:absolute;background:#1e88e5;border:solid 1px #fff;z-index:4;box-sizing:border-box}.fr-box .fr-video-resizer .fr-handler.fr-hnw{cursor:nw-resize}.fr-box .fr-video-resizer .fr-handler.fr-hne{cursor:ne-resize}.fr-box .fr-video-resizer .fr-handler.fr-hsw{cursor:sw-resize}.fr-box .fr-video-resizer .fr-handler.fr-hse{cursor:se-resize}.fr-box .fr-video-resizer .fr-handler{width:12px;height:12px}.fr-box .fr-video-resizer .fr-handler.fr-hnw{left:-6px;top:-6px}.fr-box .fr-video-resizer .fr-handler.fr-hne{right:-6px;top:-6px}.fr-box .fr-video-resizer .fr-handler.fr-hsw{left:-6px;bottom:-6px}.fr-box .fr-video-resizer .fr-handler.fr-hse{right:-6px;bottom:-6px}@media (min-width:1200px){.fr-box .fr-video-resizer .fr-handler{width:10px;height:10px}.fr-box .fr-video-resizer .fr-handler.fr-hnw{left:-5px;top:-5px}.fr-box .fr-video-resizer .fr-handler.fr-hne{right:-5px;top:-5px}.fr-box .fr-video-resizer .fr-handler.fr-hsw{left:-5px;bottom:-5px}.fr-box .fr-video-resizer .fr-handler.fr-hse{right:-5px;bottom:-5px}}.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line{width:calc(50% - 5px);display:inline-block}.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line+.fr-input-line{margin-left:10px}.fr-popup .fr-video-upload-layer{border:dashed 2px #bdbdbd;padding:25px 0;position:relative;font-size:14px;letter-spacing:1px;line-height:140%;text-align:center}.fr-popup .fr-video-upload-layer:hover{background:#ebebeb}.fr-popup .fr-video-upload-layer.fr-drop{background:#ebebeb;border-color:#1e88e5}.fr-popup .fr-video-upload-layer .fr-form{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"alpha(Opacity=0)";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2147483640;overflow:hidden;margin:0!important;padding:0!important;width:100%!important}.fr-popup .fr-video-upload-layer .fr-form input{cursor:pointer;position:absolute;right:0;top:0;bottom:0;width:500%;height:100%;margin:0;font-size:400px}.fr-popup .fr-video-progress-bar-layer>h3{font-size:16px;margin:10px 0;font-weight:400}.fr-popup .fr-video-progress-bar-layer>div.fr-action-buttons{display:none}.fr-popup .fr-video-progress-bar-layer>div.fr-loader{background:#bcdbf7;height:10px;width:100%;margin-top:20px;overflow:hidden;position:relative}.fr-popup .fr-video-progress-bar-layer>div.fr-loader span{display:block;height:100%;width:0;background:#1e88e5;-webkit-transition:width .2s ease 0s;-moz-transition:width .2s ease 0s;-ms-transition:width .2s ease 0s;-o-transition:width .2s ease 0s}.fr-popup .fr-video-progress-bar-layer>div.fr-loader.fr-indeterminate span{width:30%!important;position:absolute;top:0;animation:loading 2s linear infinite}.fr-popup .fr-video-progress-bar-layer.fr-error>div.fr-loader{display:none}.fr-popup .fr-video-progress-bar-layer.fr-error>div.fr-action-buttons{display:block}.fr-video-overlay{position:fixed;top:0;left:0;bottom:0;right:0;z-index:2147483640;display:none}/*!* froala_editor v2.9.6 (https://www.froala.com/wysiwyg-editor)* License https://froala.com/wysiwyg-editor/terms/* Copyright 2014-2019 Froala Labs*/.clearfix::after{clear:both;display:block;content:"";height:0}.hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.fr-popup .fr-file-upload-layer{border:dashed 2px #bdbdbd;padding:25px 0;position:relative;font-size:14px;letter-spacing:1px;line-height:140%;box-sizing:border-box;text-align:center}.fr-popup .fr-file-upload-layer:hover{background:#ebebeb}.fr-popup .fr-file-upload-layer.fr-drop{background:#ebebeb;border-color:#1e88e5}.fr-popup .fr-file-upload-layer .fr-form{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"alpha(Opacity=0)";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2147483640;overflow:hidden;margin:0!important;padding:0!important;width:100%!important}.fr-popup .fr-file-upload-layer .fr-form input{cursor:pointer;position:absolute;right:0;top:0;bottom:0;width:500%;height:100%;margin:0;font-size:400px}.fr-popup .fr-file-progress-bar-layer{box-sizing:border-box}.fr-popup .fr-file-progress-bar-layer>h3{font-size:16px;margin:10px 0;font-weight:400}.fr-popup .fr-file-progress-bar-layer>div.fr-action-buttons{display:none}.fr-popup .fr-file-progress-bar-layer>div.fr-loader{background:#bcdbf7;height:10px;width:100%;margin-top:20px;overflow:hidden;position:relative}.fr-popup .fr-file-progress-bar-layer>div.fr-loader span{display:block;height:100%;width:0;background:#1e88e5;-webkit-transition:width .2s ease 0s;-moz-transition:width .2s ease 0s;-ms-transition:width .2s ease 0s;-o-transition:width .2s ease 0s}.fr-popup .fr-file-progress-bar-layer>div.fr-loader.fr-indeterminate span{width:30%!important;position:absolute;top:0;animation:loading 2s linear infinite}.fr-popup .fr-file-progress-bar-layer.fr-error>div.fr-loader{display:none}.fr-popup .fr-file-progress-bar-layer.fr-error>div.fr-action-buttons{display:block}@keyframes loading{from{left:-25%}to{left:100%}}/*!* froala_editor v2.9.6 (https://www.froala.com/wysiwyg-editor)* License https://froala.com/wysiwyg-editor/terms/* Copyright 2014-2019 Froala Labs*/.clearfix::after{clear:both;display:block;content:"";height:0}.hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.fr-element .fr-embedly{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;position:relative}.fr-element .fr-embedly::after{position:absolute;content:'';z-index:1;top:0;left:0;right:0;bottom:0;cursor:pointer;display:block;background:rgba(0,0,0,0)}.fr-element .fr-embedly>*{box-sizing:content-box;max-width:100%;border:0}.fr-box .fr-embedly-resizer{position:absolute;z-index:2;border:solid 1px #1e88e5;display:none;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-box .fr-embedly-resizer.fr-active{display:block}
.oembed.video,.oembed.codepen,.fr-video{display:block;width:100%;margin-bottom:0;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.oembed.video video,.oembed.codepen video,.fr-video video{width:100%}.oembed.video iframe,.oembed.codepen iframe,.fr-video iframe{border:none;height:100%;position:absolute;top:0;width:100%;left:0}img.fr-full-width{min-width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw !important;margin-right:-50vw !important}
@charset "UTF-8";.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@keyframes pulse{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes wobble{0%{-webkit-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);transform:translateX(0%)}}@keyframes wobble{0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(0.9) rotate(-3deg);transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(0.9) rotate(-3deg);-ms-transform:scale(0.9) rotate(-3deg);transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}.flipInY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}


@-webkit-keyframes puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@keyframes puffIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-webkit-keyframes vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}

.puffIn {
  -webkit-animation-name: puffIn;
  animation-name: puffIn;
}
.puffOut {
  -webkit-animation-name: puffOut;
  animation-name: puffOut;
}
.vanishIn {
  -webkit-animation-name: vanishIn;
  animation-name: vanishIn;
}

.com_joeworkman_stacks_easycms_image_stack img,.com_joeworkman_stacks_totalcms_image_stack img{width:auto;height:auto;max-width:100%;display:block;margin:0 auto}.com_joeworkman_stacks_easycms_image_stack img.circle,.com_joeworkman_stacks_totalcms_image_stack img.circle{border-radius:50% !important}.com_joeworkman_stacks_easycms_image_stack img.unlimited,.com_joeworkman_stacks_totalcms_image_stack img.unlimited{width:100%;}.com_joeworkman_stacks_easycms_image_stack img.auto-lightbox,.com_joeworkman_stacks_totalcms_image_stack img.auto-lightbox{cursor:pointer}.com_joeworkman_stacks_easycms_image_stack img.align-left,.com_joeworkman_stacks_totalcms_image_stack img.align-left{margin-left:0 !important}.com_joeworkman_stacks_easycms_image_stack img.align-right,.com_joeworkman_stacks_totalcms_image_stack img.align-right{margin-right:0 !important}@media only screen and (max-width:40em){.com_joeworkman_stacks_easycms_image_stack img.align-mobile-center,.com_joeworkman_stacks_totalcms_image_stack img.align-mobile-center{margin-left:auto !important;margin-right:auto !important}}#total-image-reveal{position:fixed !important;top:10% !important;left:0;right:0;cursor:pointer;height:80vh;padding:0;background:transparent;box-shadow:none;border:none}#total-image-reveal img{display:block;margin:0 auto;height:auto;max-height:100%;max-width:100%;width:auto;border-radius:3px;box-shadow:0 0 10px rgba(0,0,0,0.4)}#total-image-reveal .close-reveal-modal{position:fixed}

.processing-circle{margin:0 auto;width:40px;height:40px;border:4px solid var(--white-color);border-top:4px solid var(--primary);border-radius:50%;-webkit-filter:drop-shadow(0 0 20px rgba(0,0,0,0.6));filter:drop-shadow(0 0 20px rgba(0,0,0,0.6))}.processing-circle.dark{border-color:var(--black-color);border-top-color:var(--primary)}.processing-circle.primary{border-top-color:var(--primary)}.processing-circle.secondary{border-top-color:var(--secondary)}.processing-circle.warning{border-top-color:var(--warning)}.processing-circle.success{border-top-color:var(--success)}.processing-circle.alert{border-top-color:var(--alert)}



.form-submit-success,.form-submit-error{opacity:0;-webkit-transition:none;transition:none;overflow:hidden}form:not(.success) .form-submit-success,form:not(.error) .form-submit-error{max-height:0;padding:0;margin:0;border-width:0px}form.success .form-submit-success,form.error .form-submit-error{opacity:1;-webkit-transition:opacity 500ms ease;transition:opacity 500ms ease}.form-submit-processing{opacity:0;pointer-events:none;-webkit-transition:opacity 500ms ease;transition:opacity 500ms ease}form:not(.processing) .form-submit-processing{max-height:0}form.processing *{pointer-events:none}form.processing .form-submit-processing{opacity:1;pointer-events:auto}.processing-modal.absolute,.processing-modal.fixed{background-color:var(--overlay-color);border-radius:inherit;position:absolute;top:0;left:0;right:0;bottom:0}.processing-modal.absolute .processing-circle,.processing-modal.fixed .processing-circle{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}.processing-modal.fixed{position:fixed}
/* TRIGGER FONT */

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

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

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

.target-wrapper{position:relative}.target-show-on-hover{opacity:0;-webkit-transition:opacity 750ms ease;transition:opacity 750ms ease}.target-show-on-hover:hover{opacity:1}.target{position:absolute;width:100%;height:auto}.target.width-auto{width:auto}.target.height-fill,.target.height-fixed,.target.height-flexible{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.target.height-fill{height:100%}.target[class*="float-"],.target[class*="shift-"]{position:relative}.target[class*="pin-"],.target.relative-browser{position:fixed}.target.float-right{float:right}.target.float-left{float:left}.target.vcenter[class*="relative-"]{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.target.hcenter[class*="relative-"]{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.target.hcenter.vcenter[class*="relative-"]{-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.target.shift-up,.target.shift-down{margin-left:auto;margin-right:auto}.target.target-center{top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.target.pin-top{top:0}.target.pin-bottom{bottom:0}.target.pin-left{left:0}.target.pin-right{right:0}.target.target-disable{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;-webkit-transform:none !important;transform:none !important;width:100% !important}@media only screen and (min-width:40em){.target.target-mobile-only{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;-webkit-transform:none !important;transform:none !important;width:100% !important}}@media only screen and (max-width:39.9375em){.target.target-disable-mobile{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;-webkit-transform:none !important;transform:none !important;width:100% !important}}@media only screen and (max-width:62.5em){.target.target-desktop-only{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;-webkit-transform:none !important;transform:none !important;width:100% !important}}



:root{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(200, 200, 200, 1.00);--dark-gray:rgba(140, 140, 140, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(85, 118, 89, 1.00);--secondary:rgba(144, 60, 44, 1.00);--success:rgba(91, 127, 202, 1.00);--warning:rgba(240, 138, 36, 1.00);--alert:rgba(201, 0, 32, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(51, 51, 51, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 254, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 246, 1.00);--alert-light:rgba(255, 210, 242, 1.00);*/--primary-dark:rgba(55, 88, 59, 1.00);--secondary-dark:rgba(114, 30, 14, 1.00);--success-dark:rgba(61, 97, 172, 1.00);--warning-dark:rgba(210, 108, 6, 1.00);--alert-dark:rgba(171, 0, 2, 1.00);--header-color:rgba(30, 30, 30, 1.00);--subheader-color:rgba(144, 60, 44, 1.00);--small-color:rgba(200, 200, 200, 1.00);--text-color:rgba(30, 30, 30, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--selection-background:var(--primary);--selection-text:var(--primary-contrast);--link-decoration:none;--link-decoration-hover:none;--overlay-color:rgba(0, 0, 0, 0.70);--radius:3px;--small-gutter:1.25rem;--medium-gutter:2rem;--large-gutter:2rem}::-moz-selection{background:var(--selection-background);color:var(--selection-text)}::selection{background:var(--selection-background);color:var(--selection-text)}.alt{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(230, 230, 230, 1.00);--small-color:rgba(200, 200, 200, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(85, 118, 89, 1.00);--link-decoration:none;--link-decoration-hover:none}.grid-container{max-width:calc(1200rem/16);}.radius{border-radius:var(--radius)}body{font-size:calc(18rem/16)}h1,.h1{font-size:calc(32rem/16)}h2,.h2{font-size:calc(28rem/16)}h3,.h3{font-size:calc(22rem/16)}h4,.h4{font-size:calc(20rem/16)}h5,.h5{font-size:calc(19rem/16)}h6,.h6{font-size:calc(18rem/16)}small{font-size:40%}.button{font-size:calc(16rem/16)}.button.tiny{font-size:calc(10rem/16)}.button.small{font-size:calc(12rem/16)}.button.large{font-size:calc(20rem/16)}@media only screen and (min-width:40em){body{font-size:calc(18rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(30rem/16)}h4,.h4{font-size:calc(26rem/16)}h5,.h5{font-size:calc(22rem/16)}h6,.h6{font-size:calc(18rem/16)}small{font-size:30%}}@media only screen and (min-width:64em){body{font-size:calc(18rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(32rem/16)}h4,.h4{font-size:calc(26rem/16)}h5,.h5{font-size:calc(22rem/16)}h6,.h6{font-size:calc(18rem/16)}small{font-size:30%}}a{color:var(--link-color);-webkit-text-decoration:var(--link-decoration);text-decoration:var(--link-decoration)}a:hover,a:focus{color:var(--link-color-hover);-webkit-text-decoration:var(--link-decoration-hover);text-decoration:var(--link-decoration-hover)}.menu a{color:var(--menu-link-color);background:var(--menu-bg-color)}.menu a:hover{color:var(--menu-link-color-hover)}h1,h2,h3,h4,h5,h6{color:var(--header-color)}small{color:var(--small-color)}.subheader{color:var(--subheader-color)}.text ul,.text ol{list-style-position:outside}.text>ul,.text>ol,.text .mez>div>ul,.text .mez>div>ol{margin-left:0}.text ul{list-style-type:disc}.text ul ul,.text ol ul{list-style-type:circle}.text ol{list-style-type:decimal}.text ol ol,.text ul ol{list-style-type:lower-alpha}.radius,.radius:before,.radius:after{border-radius:calc(3rem/16)}body{}
            .accordion-sectionstyle{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em){            .accordion-sectionstyle{font-size:calc(24rem/16) }}@media only screen and (min-width:64em){            .accordion-sectionstyle{font-size:calc(32rem/16) }}

 html,body, a, ul,ul li,ol,ol li,dl,dl dd, fieldset,input,textarea,form label,input + label,fieldset label,input + datalist,legend, p:not(.custom-font),.font-family-text,.text_stack:not(.custom-font),.fontpro-stacks_in_7389_7{font-style:normal;font-weight:300;font-family:"Fira Sans",sans-serif }p:not(.custom-font),p.font-family-text:not(.custom-font),.text_stack:not(.custom-font){font-style:normal;font-weight:300;font-family:"Fira Sans",sans-serif }

 html,body, h1,.font-family-h1,h1 a,.font-family-h1 a, h2,.font-family-h2,h2 a,.font-family-h2 a,.fontpro-stacks_in_7389_8{font-style:normal;font-weight:400;font-family:"Fira Sans",sans-serif }

 html,body, h3,.font-family-h3,h3 a,.font-family-h3 a, h4,.font-family-h4,h4 a,.font-family-h4 a, h5,.font-family-h5,h5 a,.font-family-h5 a, h6,.font-family-h6,h6 a,.font-family-h6 a, button,.button,.btn,.fontpro-stacks_in_7389_9{font-style:normal;font-weight:400;font-family:"Fira Sans",sans-serif }

 html,body, blockquote,.fontpro-stacks_in_7389_10{font-style:normal;font-weight:300;font-family:"Fira Sans",sans-serif }
 p,.p,       blockquote,    .firasans{font-family:"Fira Sans",sans-serif }
 p,.p,           .viewmorecontent{font-size:calc(18rem/16) ;}@media only screen and (min-width:40em){ p,.p,           .viewmorecontent{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){ p,.p,           .viewmorecontent{font-size:calc(18rem/16) }}
            .banner .menu{font-size:calc(18rem/16) ;}@media only screen and (min-width:40em){            .banner .menu{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){            .banner .menu{font-size:calc(18rem/16) }}
            .ticker{font-size:calc(14rem/16) ;font-style:italic ;}@media only screen and (min-width:40em){            .ticker{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){            .ticker{font-size:calc(18rem/16) }}
    h3,.h3,        .nieuwskolomkop{}
    h3,.h3,        .contactkolomkop{}
     h4,.h4, h5,.h5,      .nieuwskolomsubkop{}
     h4,.h4, h5,.h5,      .contactkolomsubkop{}
    h3,.h3,        .overkirstenkolomkop{}
     h4,.h4, h5,.h5,      .overkirstenkolomsubkop{}
        blockquote,    .overkirstenkolom1tekst{font-size:calc(18rem/16) ;font-weight:400 ;font-style:italic ;}@media only screen and (min-width:40em){        blockquote,    .overkirstenkolom1tekst{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){        blockquote,    .overkirstenkolom1tekst{font-size:calc(18rem/16) }}
        blockquote,    .overkirstenkolom2tekst{font-size:calc(18rem/16) ;font-weight:400 ;font-style:italic ;}@media only screen and (min-width:40em){        blockquote,    .overkirstenkolom2tekst{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){        blockquote,    .overkirstenkolom2tekst{font-size:calc(18rem/16) }}
 p,.p,       blockquote,    .quoteslidertext{font-size:calc(18rem/16) ;font-style:italic ;}@media only screen and (min-width:40em){ p,.p,       blockquote,    .quoteslidertext{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){ p,.p,       blockquote,    .quoteslidertext{font-size:calc(18rem/16) }}
 p,.p,       blockquote,    .quoteslidertextarchive{font-size:calc(18rem/16) ;font-style:italic ;}@media only screen and (min-width:40em){ p,.p,       blockquote,    .quoteslidertextarchive{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){ p,.p,       blockquote,    .quoteslidertextarchive{font-size:calc(18rem/16) }}

 .quoteslidertext, .fontpro-stacks_in_7389_90{ font-size:18.00px ; text-decoration-line:none ;text-decoration-style:solid ;text-transform:none ;word-wrap:normal ;word-break:normal ;-webkit-hyphens:none ;hyphens:none ;text-align:center ;color:rgba(234, 106, 82, 1.00) ;text-decoration-color:rgba(46, 46, 46, 1.00) ;}
  
  @media only screen and (min-width:40em){ .quoteslidertext, .fontpro-stacks_in_7389_90{text-align:center ;}} 
  @media only screen and (min-width:25.875000em){ .quoteslidertext, .fontpro-stacks_in_7389_90{font-size:18.00px }} 
  @media only screen and (min-width:48.000000em){ .quoteslidertext, .fontpro-stacks_in_7389_90{font-size:18.00px }} 
  @media only screen and (min-width:62.500000em){ .quoteslidertext, .fontpro-stacks_in_7389_90{font-size:18.00px }} 

 .quoteslidertextarchive, .fontpro-stacks_in_7389_100{ font-size:18.00px ; text-decoration-line:none ;text-decoration-style:solid ;text-transform:none ;word-wrap:normal ;word-break:normal ;-webkit-hyphens:none ;hyphens:none ;text-align:center ;color:rgba(165, 165, 165, 1.00) ;text-decoration-color:rgba(46, 46, 46, 1.00) ;}
  
  @media only screen and (min-width:40em){ .quoteslidertextarchive, .fontpro-stacks_in_7389_100{text-align:center ;}} 
  @media only screen and (min-width:25.875000em){ .quoteslidertextarchive, .fontpro-stacks_in_7389_100{font-size:18.00px }} 
  @media only screen and (min-width:48.000000em){ .quoteslidertextarchive, .fontpro-stacks_in_7389_100{font-size:18.00px }} 
  @media only screen and (min-width:62.500000em){ .quoteslidertextarchive, .fontpro-stacks_in_7389_100{font-size:18.00px }} 

 .bluetext, .fontpro-stacks_in_7389_133{ font-size:18.00px ; text-decoration-line:none ;text-decoration-style:solid ;text-transform:none ;word-wrap:normal ;word-break:normal ;-webkit-hyphens:none ;hyphens:none ;text-align:center ;color:rgba(58, 81, 139, 1.00) ;text-decoration-color:rgba(46, 46, 46, 1.00) ;}
  
  @media only screen and (min-width:40em){ .bluetext, .fontpro-stacks_in_7389_133{text-align:center ;}} 
  @media only screen and (min-width:25.875000em){ .bluetext, .fontpro-stacks_in_7389_133{font-size:18.00px }} 
  @media only screen and (min-width:48.000000em){ .bluetext, .fontpro-stacks_in_7389_133{font-size:18.00px }} 
  @media only screen and (min-width:62.500000em){ .bluetext, .fontpro-stacks_in_7389_133{font-size:18.00px }} 

 .menupointer, .fontpro-stacks_in_7389_108{ font-size:24.00px ; }
  
  
  @media only screen and (min-width:25.875000em){ .menupointer, .fontpro-stacks_in_7389_108{font-size:24.00px }} 
  @media only screen and (min-width:48.000000em){ .menupointer, .fontpro-stacks_in_7389_108{font-size:24.00px }} 
  @media only screen and (min-width:62.500000em){ .menupointer, .fontpro-stacks_in_7389_108{font-size:24.00px }} 
            .warning{font-size:calc(14rem/16) ;}@media only screen and (min-width:40em){            .warning{font-size:calc(14rem/16) }}@media only screen and (min-width:64em){            .warning{font-size:calc(14rem/16) }}
            .browserwarning{font-size:calc(9rem/16) ;}@media only screen and (min-width:40em){            .browserwarning{font-size:calc(9rem/16) }}@media only screen and (min-width:64em){            .browserwarning{font-size:calc(9rem/16) }}

 .browserwarningpro, .fontpro-stacks_in_7389_144{ font-size:9.00px ; color:rgba(255, 255, 255, 1.00) ;text-decoration-color:rgba(0, 0, 0, 1.00) ;}
  
  
  @media only screen and (min-width:25.875000em){ .browserwarningpro, .fontpro-stacks_in_7389_144{font-size:9.00px }} 
  @media only screen and (min-width:48.000000em){ .browserwarningpro, .fontpro-stacks_in_7389_144{font-size:10.00px }} 
  @media only screen and (min-width:62.500000em){ .browserwarningpro, .fontpro-stacks_in_7389_144{font-size:10.00px }} 
            .toptext{font-size:calc(28rem/16) ;font-style:italic ;}@media only screen and (min-width:40em){            .toptext{font-size:calc(36rem/16) }}@media only screen and (min-width:64em){            .toptext{font-size:calc(44rem/16) }}
  h1,.h1, h2,.h2,         .toptext1{font-size:calc(28rem/16) ;}@media only screen and (min-width:40em){  h1,.h1, h2,.h2,         .toptext1{font-size:calc(36rem/16) }}@media only screen and (min-width:64em){  h1,.h1, h2,.h2,         .toptext1{font-size:calc(46rem/16) }}
    h3,.h3, h4,.h4,       .toptext2{font-size:calc(20rem/16) ;font-style:italic ;}@media only screen and (min-width:40em){    h3,.h3, h4,.h4,       .toptext2{font-size:calc(28rem/16) }}@media only screen and (min-width:64em){    h3,.h3, h4,.h4,       .toptext2{font-size:calc(34rem/16) }}
    h3,.h3, h4,.h4,       .toptext3{font-size:calc(18rem/16) ;font-style:italic ;}@media only screen and (min-width:40em){    h3,.h3, h4,.h4,       .toptext3{font-size:calc(26rem/16) }}@media only screen and (min-width:64em){    h3,.h3, h4,.h4,       .toptext3{font-size:calc(32rem/16) }}
.bghover{background-color:var(--white-color) ;}
.bghover:hover{background:none ;background-color:rgba(121, 51, 73, 1.00) ;}
.buttonhover{background-color:rgba(144, 60, 44, 1.00) ;}
.buttonhover:hover{background-color:var(--primary) ;}
.buttonhover{border-radius:0px 0px 0px 0px ;}
.buttonhover:hover{border-radius:30px 30px 30px 30px ;}
.bghover{-webkit-transition:all 1000ms ease 0ms ;transition:all 1000ms ease 0ms }
.buttonhover{-webkit-transition:all 1000ms ease 0ms ;transition:all 1000ms ease 0ms }
.button:active{background-color:var(--white-color) ;}
.bg0{background-color:rgba(46, 46, 46, 1.00) ;}
.bg1{background-color:rgba(85, 118, 89, 1.00) ;}
.bg1d{background-color:rgba(39, 61, 57, 1.00) ;}
.bg1t{background-color:rgba(39, 61, 57, 0.70) ;}
.bg1x{background-color:rgba(60, 85, 76, 1.00) ;}
.bg2l{background-color:rgba(135, 177, 228, 1.00) ;}
.bg2d{background-color:rgba(91, 127, 202, 1.00) ;}
.bg3{background-color:var(--light-gray) ;}
.bg4{background-color:rgba(188, 188, 188, 1.00) ;}
.bg4d{background-color:rgba(165, 165, 165, 1.00) ;}
.bg4t{background-color:rgba(188, 188, 188, 0.92) ;}
.bg5{background-color:var(--dark-gray) ;}
.bg6{background-color:rgba(101, 101, 101, 1.00) ;}
.bg7{background-color:var(--white-color) ;}
.bg7t{background-color:var(--white-color) ;background-color:rgba(255, 255, 255, 0.80) ;}
.bg8{background-color:rgba(144, 60, 44, 1.00) ;}
.bg8d{background-color:rgba(74, 61, 47, 1.00) ;}
.bg8x{background-color:rgba(234, 106, 82, 1.00) ;}
.bg9{background-color:var(--primary) ;}
.bg9t{background-color:rgba(212, 119, 147, 0.70) ;}
.bg9d{background-color:rgba(121, 51, 73, 1.00) ;}
.bg10{background-color:var(--black-color) ;}
.fontcolorwhite{color:rgba(255, 255, 255, 1.00) ;}
.fontcolorroseX1{color:rgba(144, 60, 44, 1.00) ;}
.fontcolorroseX2{color:rgba(234, 106, 82, 1.00) ;}
.fontcolorrose1{color:rgba(212, 119, 147, 1.00) ;}
.fontcolorrose2{color:rgba(121, 51, 73, 1.00) ;}
.fontcolorblue2{color:rgba(90, 127, 202, 1.00) ;}
.fontcolorbrown2{color:rgba(144, 60, 44, 1.00) ;}
.fontcolorbrown2-oud{color:rgba(171, 131, 85, 1.00) ;}
.accordion-title:hover{background-color:rgba(121, 51, 73, 1.00) ;}
.textcolorgreen2{--header-color:rgba(85, 118, 88, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(85, 118, 88, 1.00);--link-color:rgba(60, 85, 76, 1.00);--link-color-hover:rgba(85, 118, 88, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorroseX1{--header-color:rgba(144, 60, 44, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(144, 60, 44, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(144, 60, 44, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorrose{--header-color:rgba(144, 60, 44, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(144, 60, 44, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(110, 35, 38, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorroseX2{--header-color:rgba(234, 106, 82, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(234, 106, 82, 1.00);--link-color:rgba(144, 60, 44, 1.00);--link-color-hover:rgba(234, 106, 82, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorrose0{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(246, 170, 220, 1.00);--link-color:rgba(212, 119, 147, 1.00);--link-color-hover:rgba(246, 170, 220, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorblue2{--header-color:rgba(58, 81, 139, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(90, 127, 202, 1.00);--link-color:rgba(58, 81, 139, 1.00);--link-color-hover:rgba(90, 127, 202, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorbrown2-oud{--header-color:rgba(74, 51, 15, 0.70);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(171, 131, 85, 1.00);--link-color:rgba(74, 51, 15, 0.80);--link-color-hover:rgba(171, 131, 85, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorrose1{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(212, 119, 147, 1.00);--link-color:rgba(121, 51, 73, 1.00);--link-color-hover:rgba(212, 119, 147, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorrose2{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(121, 51, 73, 1.00);--link-color:rgba(212, 119, 147, 1.00);--link-color-hover:rgba(121, 51, 73, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorblue3{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(90, 127, 202, 1.00);--link-color:rgba(58, 81, 139, 1.00);--link-color-hover:rgba(90, 127, 202, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textonbg{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(144, 60, 44, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textonbg2{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorsand{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(234, 106, 82, 1.00);--link-color:rgba(144, 60, 44, 1.00);--link-color-hover:rgba(234, 106, 82, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorsand-oud{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(154, 134, 105, 1.00);--link-color:rgba(99, 78, 67, 1.00);--link-color-hover:rgba(171, 131, 85, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textcolorwhite{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(90, 127, 202, 1.00);--link-color-hover:rgba(7, 60, 126, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textonbg-oud{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.menupointer{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(144, 60, 44, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.menupointer-oud{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textonbg4{--header-color:rgba(85, 118, 88, 1.00);--subheader-color:rgba(85, 118, 88, 1.00);--small-color:rgba(60, 85, 76, 1.00);--text-color:rgba(23, 23, 23, 1.00);--link-color:rgba(60, 85, 76, 1.00);--link-color-hover:rgba(23, 23, 23, 1.00);--link-decoration:none;--link-decoration-hover:none}
.contactkolomkop-oud{--header-color:rgba(74, 61, 47, 1.00);--subheader-color:rgba(171, 131, 85, 1.00);--small-color:rgba(74, 61, 47, 1.00);--text-color:rgba(74, 61, 47, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(74, 61, 47, 1.00);--link-decoration:none;--link-decoration-hover:none}
.contactkolomkop{--header-color:rgba(144, 60, 44, 1.00);--subheader-color:rgba(234, 106, 82, 1.00);--small-color:rgba(144, 60, 44, 1.00);--text-color:rgba(144, 60, 44, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(144, 60, 44, 1.00);--link-decoration:none;--link-decoration-hover:none}
.subkop1{--header-color:rgba(144, 60, 44, 1.00);--subheader-color:rgba(144, 60, 44, 1.00);--small-color:rgba(234, 106, 82, 1.00);--text-color:rgba(144, 60, 44, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(144, 60, 44, 1.00);--link-decoration:none;--link-decoration-hover:none}
.subkop1-oud{--header-color:rgba(74, 51, 15, 1.00);--subheader-color:rgba(74, 51, 15, 1.00);--small-color:rgba(171, 131, 85, 1.00);--text-color:rgba(74, 51, 15, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(99, 78, 67, 1.00);--link-decoration:none;--link-decoration-hover:none}
.contactkolomtekst{--header-color:rgba(234, 106, 82, 1.00);--subheader-color:rgba(234, 106, 82, 1.00);--small-color:rgba(144, 60, 44, 1.00);--text-color:rgba(23, 23, 23, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(144, 60, 44, 1.00);--link-decoration:none;--link-decoration-hover:none}
.contactkolomsubkop{--header-color:rgba(144, 60, 44, 1.00);--subheader-color:rgba(234, 106, 82, 1.00);--small-color:rgba(144, 60, 44, 1.00);--text-color:rgba(144, 60, 44, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(144, 60, 44, 1.00);--link-decoration:none;--link-decoration-hover:none}
.contactkolomsubkop-oud{--header-color:rgba(74, 61, 47, 1.00);--subheader-color:rgba(171, 131, 85, 1.00);--small-color:rgba(74, 61, 47, 1.00);--text-color:rgba(74, 61, 47, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(74, 61, 47, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textonbg8{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(234, 106, 82, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.contactkolomtekst-oud{--header-color:rgba(171, 131, 85, 1.00);--subheader-color:rgba(171, 131, 85, 1.00);--small-color:rgba(74, 61, 47, 1.00);--text-color:rgba(23, 23, 23, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(74, 61, 47, 1.00);--link-decoration:none;--link-decoration-hover:none}
.nieuwskolomkop{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(144, 60, 44, 0.50);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(40, 61, 57, 1.00);--link-color-hover:rgba(74, 51, 15, 1.00);--link-decoration:none;--link-decoration-hover:none}
.nieuwskolomsubkop{--header-color:rgba(234, 106, 82, 1.00);--subheader-color:rgba(234, 106, 82, 1.00);--small-color:rgba(234, 106, 82, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.textonbg8x{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(144, 60, 44, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(30, 30, 30, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.accordion-title{--header-color:rgba(121, 51, 73, 1.00);--subheader-color:rgba(212, 119, 147, 1.00);--small-color:rgba(212, 119, 147, 1.00);--text-color:rgba(212, 119, 147, 1.00);--link-color:rgba(212, 119, 147, 1.00);--link-color-hover:rgba(121, 51, 73, 1.00);--link-decoration:none;--link-decoration-hover:none}
.accordion-title:hover{--header-color:rgba(121, 51, 73, 1.00);--subheader-color:rgba(212, 119, 147, 1.00);--small-color:rgba(212, 119, 147, 1.00);--text-color:rgba(212, 119, 147, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(121, 51, 73, 1.00);--link-decoration:none;--link-decoration-hover:none}
.ticker{--header-color:rgba(74, 51, 15, 1.00);--subheader-color:rgba(74, 51, 15, 1.00);--small-color:rgba(171, 131, 85, 1.00);--text-color:rgba(74, 51, 15, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(99, 78, 67, 1.00);--link-decoration:none;--link-decoration-hover:none}
.viewmorecontent-color8{color:rgba(255, 255, 255, 1.00) ;}
.viewmorecontent-color{--header-color:rgba(165, 165, 165, 1.00);--subheader-color:rgba(165, 165, 165, 1.00);--small-color:rgba(165, 165, 165, 1.00);--text-color:rgba(165, 165, 165, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(180, 180, 180, 1.00);--link-decoration:none;--link-decoration-hover:none}
.dividerkirsten{border-color:rgba(46, 46, 46, 1.00) ;border-width:1px ;}
.dividerteksten{border-color:rgba(40, 61, 57, 1.00) ;border-width:1px ;}
.divideragenda{border-color:rgba(171, 131, 85, 1.00) ;border-width:1px ;}
.dividertraining{border-color:rgba(85, 118, 88, 1.00) ;border-width:1px ;}
.accordion-content{background-color:var(--primary) ;background-color:rgba(23, 23, 23, 1.00) ;}
.accordion-title{margin-top:1.25rem ;margin-right:1.25rem ;margin-bottom:1.25rem ;margin-left:1.25rem ;}  
.accordion-content{margin-top:0.5rem ;margin-right:1.25rem ;margin-bottom:0.5rem ;margin-left:1.25rem ;}  
.accordion-title{border-color:rgba(23, 23, 23, 1.00) ;border-width:0px ;border-style:hidden ;}
.accordion-content{border-color:rgba(23, 23, 23, 1.00) ;border-width:0px ;border-style:none ;}
.dividernieuws{border-color:rgba(99, 78, 67, 1.00) ;border-width:1px ;}
.grid-divider-alt{border-color:rgba(255, 255, 255, 1.00) ;border-width:1px ;}
.grid-divider{height:66.6666% ;}  
.grid-divider{margin-top:5rem ;margin-right:1.25rem ;margin-bottom:5rem ;margin-left:1.25rem ;}  
.quoteslidertext{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(234, 106, 82, 1.00);--link-color:rgba(140, 140, 140, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.viewmorecontent-color-oud2{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(236, 236, 236, 1.00);--link-color:rgba(234, 106, 82, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.viewmorecontent-color-oud1{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(236, 236, 236, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(85, 118, 88, 1.00);--link-decoration:none;--link-decoration-hover:none}
.quoteslidertext-oud{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(171, 131, 85, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.button-grey{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(58, 81, 139, 1.00);--link-color:rgba(144, 60, 44, 1.00);--link-color-hover:rgba(58, 81, 139, 1.00);--link-decoration:none;--link-decoration-hover:none}
.button-blue{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(90, 127, 202, 1.00);--secondary:rgba(144, 60, 44, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 254, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(60, 97, 172, 1.00);--secondary-dark:rgba(114, 30, 14, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-blue-oud{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(90, 127, 202, 1.00);--secondary:rgba(171, 131, 85, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(60, 97, 172, 1.00);--secondary-dark:rgba(141, 101, 55, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-grey-oud{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(58, 81, 139, 1.00);--link-color:rgba(171, 131, 85, 1.00);--link-color-hover:rgba(58, 81, 139, 1.00);--link-decoration:none;--link-decoration-hover:none}
.button-blue:hover{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(114, 154, 230, 1.00);--secondary:rgba(99, 78, 67, 1.00);--success:rgba(90, 127, 202, 1.00);--warning:rgba(101, 101, 101, 1.00);--alert:rgba(201, 0, 32, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 210, 242, 1.00);*/--primary-dark:rgba(84, 124, 200, 1.00);--secondary-dark:rgba(69, 48, 37, 1.00);--success-dark:rgba(60, 97, 172, 1.00);--warning-dark:rgba(71, 71, 71, 1.00);--alert-dark:rgba(171, 0, 2, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.viewmorecontent-color8{color:rgba(255, 255, 255, 1.00) ;}
.quoteslidertextarchive{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(165, 165, 165, 1.00);--link-color:rgba(165, 165, 165, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bgoverlay40{position:relative}.bgoverlay40 > *{position:relative}.bgoverlay40:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;opacity:1.00 ;background-color:rgba(0, 0, 0, 0.40) ;}
.button-archive{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(101, 101, 101, 1.00);--secondary:rgba(165, 165, 165, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(71, 71, 71, 1.00);--secondary-dark:rgba(135, 135, 135, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-archive:hover{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(101, 101, 101, 1.00);--secondary:rgba(165, 165, 165, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(71, 71, 71, 1.00);--secondary-dark:rgba(135, 135, 135, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-green{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(85, 118, 88, 1.00);--secondary:rgba(144, 60, 44, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 254, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(55, 88, 58, 1.00);--secondary-dark:rgba(114, 30, 14, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-grey:hover{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(255, 255, 255, 1.00);--secondary:rgba(144, 60, 44, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 254, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(225, 225, 225, 1.00);--secondary-dark:rgba(114, 30, 14, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-grey-oud:hover{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(255, 255, 255, 1.00);--secondary:rgba(171, 131, 85, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(225, 225, 225, 1.00);--secondary-dark:rgba(141, 101, 55, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-green:hover{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(85, 118, 88, 1.00);--secondary:rgba(99, 78, 67, 1.00);--success:rgba(90, 127, 202, 1.00);--warning:rgba(101, 101, 101, 1.00);--alert:rgba(201, 0, 32, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 210, 242, 1.00);*/--primary-dark:rgba(55, 88, 58, 1.00);--secondary-dark:rgba(69, 48, 37, 1.00);--success-dark:rgba(60, 97, 172, 1.00);--warning-dark:rgba(71, 71, 71, 1.00);--alert-dark:rgba(171, 0, 2, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button:hover{border-radius:30px 30px 30px 30px ;}
.button-brown{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(171, 131, 85, 1.00);--secondary:rgba(74, 51, 15, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 225, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(141, 101, 55, 1.00);--secondary-dark:rgba(44, 21, 0, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-rose{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(144, 60, 44, 1.00);--secondary:rgba(234, 106, 82, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 254, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(114, 30, 14, 1.00);--secondary-dark:rgba(204, 76, 52, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-grey{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(200, 200, 200, 1.00);--secondary:rgba(144, 60, 44, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 254, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(170, 170, 170, 1.00);--secondary-dark:rgba(114, 30, 14, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-green-oud{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(85, 118, 88, 1.00);--secondary:rgba(171, 131, 85, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(55, 88, 58, 1.00);--secondary-dark:rgba(141, 101, 55, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button-grey-oud{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(200, 200, 200, 1.00);--secondary:rgba(171, 131, 85, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(132, 132, 132, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(170, 170, 170, 1.00);--secondary-dark:rgba(141, 101, 55, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(102, 102, 102, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.menu{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(234, 106, 82, 1.00);--link-decoration:none;--link-decoration-hover:none}
.button-brown:hover{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(255, 255, 255, 1.00);--white-color:var(--white);--primary:rgba(171, 131, 85, 1.00);--secondary:rgba(74, 51, 15, 1.00);--success:rgba(90, 127, 202, 1.00);--warning:rgba(101, 101, 101, 1.00);--alert:rgba(201, 0, 32, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(255, 255, 255, 1.00);--warning-contrast:rgba(255, 255, 255, 1.00);--alert-contrast:rgba(255, 255, 255, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 225, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 255, 1.00);--alert-light:rgba(255, 210, 242, 1.00);*/--primary-dark:rgba(141, 101, 55, 1.00);--secondary-dark:rgba(44, 21, 0, 1.00);--success-dark:rgba(60, 97, 172, 1.00);--warning-dark:rgba(71, 71, 71, 1.00);--alert-dark:rgba(171, 0, 2, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
.button{-webkit-transition:all 1000ms ease 0ms ;transition:all 1000ms ease 0ms }
.menu-oud{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(171, 131, 85, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bestelform-button{border-color:rgba(255, 255, 255, 1.00) ;border-width:1px ;}
.printthisheaderfooter{--header-color:rgba(46, 46, 46, 1.00);--subheader-color:rgba(46, 46, 46, 1.00);--small-color:rgba(46, 46, 46, 1.00);--text-color:rgba(46, 46, 46, 1.00);--link-color:rgba(46, 46, 46, 1.00);--link-color-hover:rgba(46, 46, 46, 1.00);--link-decoration:none;--link-decoration-hover:none}


 .font-vault-3 > a, .font-vault-3,.font-vault-3 > li,.font-vault-3 > *, .fontpro-stacks_in_7397{font-style:normal;font-weight:400;font-family:"Euphoria Script",cursive }


 .font-style-1,.font-style-1 > li,.font-style-1 > *, .fontpro-stacks_in_7391_3{ font-size:48.00px ; color:rgba(74, 51, 15, 1.00) ;text-decoration-color:rgba(0, 0, 0, 1.00) ;}
  
  
  @media only screen and (min-width:26.250000em){ .font-style-1,.font-style-1 > li,.font-style-1 > *, .fontpro-stacks_in_7391_3{font-size:60.00px }} 
  @media only screen and (min-width:48.000000em){ .font-style-1,.font-style-1 > li,.font-style-1 > *, .fontpro-stacks_in_7391_3{font-size:72.00px }} 
  @media only screen and (min-width:62.500000em){ .font-style-1,.font-style-1 > li,.font-style-1 > *, .fontpro-stacks_in_7391_3{font-size:84.00px }} 

 .font-style-2,.font-style-2 > li,.font-style-2 > *, .fontpro-stacks_in_7391_6{ font-size:48.00px ; color:rgba(132, 132, 132, 1.00) ;text-decoration-color:rgba(0, 0, 0, 1.00) ;}
  
  
  @media only screen and (min-width:26.250000em){ .font-style-2,.font-style-2 > li,.font-style-2 > *, .fontpro-stacks_in_7391_6{font-size:60.00px }} 
  @media only screen and (min-width:48.000000em){ .font-style-2,.font-style-2 > li,.font-style-2 > *, .fontpro-stacks_in_7391_6{font-size:72.00px }} 
  @media only screen and (min-width:62.500000em){ .font-style-2,.font-style-2 > li,.font-style-2 > *, .fontpro-stacks_in_7391_6{font-size:84.00px }} 

 .font-style-3,.font-style-3 > li,.font-style-3 > *, .fontpro-stacks_in_7391_7{ font-size:48.00px ; color:rgba(255, 255, 255, 1.00) ;text-decoration-color:rgba(0, 0, 0, 1.00) ;}
  
  
  @media only screen and (min-width:26.250000em){ .font-style-3,.font-style-3 > li,.font-style-3 > *, .fontpro-stacks_in_7391_7{font-size:60.00px }} 
  @media only screen and (min-width:48.000000em){ .font-style-3,.font-style-3 > li,.font-style-3 > *, .fontpro-stacks_in_7391_7{font-size:72.00px }} 
  @media only screen and (min-width:62.500000em){ .font-style-3,.font-style-3 > li,.font-style-3 > *, .fontpro-stacks_in_7391_7{font-size:84.00px }} 

 .font-style-4,.font-style-4 > li,.font-style-4 > *, .fontpro-stacks_in_7391_8{ font-size:48.00px ; color:rgba(144, 60, 44, 1.00) ;text-decoration-color:rgba(0, 0, 0, 1.00) ;}
  
  
  @media only screen and (min-width:26.250000em){ .font-style-4,.font-style-4 > li,.font-style-4 > *, .fontpro-stacks_in_7391_8{font-size:60.00px }} 
  @media only screen and (min-width:48.000000em){ .font-style-4,.font-style-4 > li,.font-style-4 > *, .fontpro-stacks_in_7391_8{font-size:72.00px }} 
  @media only screen and (min-width:62.500000em){ .font-style-4,.font-style-4 > li,.font-style-4 > *, .fontpro-stacks_in_7391_8{font-size:84.00px }} 

 .font-style-5,.font-style-5 > li,.font-style-5 > *, .fontpro-stacks_in_7391_12{ font-size:48.00px ; color:rgba(85, 118, 88, 1.00) ;text-decoration-color:rgba(0, 0, 0, 1.00) ;}
  
  
  @media only screen and (min-width:26.250000em){ .font-style-5,.font-style-5 > li,.font-style-5 > *, .fontpro-stacks_in_7391_12{font-size:60.00px }} 
  @media only screen and (min-width:48.000000em){ .font-style-5,.font-style-5 > li,.font-style-5 > *, .fontpro-stacks_in_7391_12{font-size:72.00px }} 
  @media only screen and (min-width:62.500000em){ .font-style-5,.font-style-5 > li,.font-style-5 > *, .fontpro-stacks_in_7391_12{font-size:84.00px }} 

 .font-style-6,.font-style-6 > li,.font-style-6 > *, .fontpro-stacks_in_7391_13{ font-size:15.00px ; color:rgba(255, 255, 255, 1.00) ;text-decoration-color:rgba(0, 0, 0, 1.00) ;}
  
  
  @media only screen and (min-width:35.000000em){ .font-style-6,.font-style-6 > li,.font-style-6 > *, .fontpro-stacks_in_7391_13{font-size:18.00px }} 
  @media only screen and (min-width:52.875000em){ .font-style-6,.font-style-6 > li,.font-style-6 > *, .fontpro-stacks_in_7391_13{font-size:20.00px }} 
  @media only screen and (min-width:75.000000em){ .font-style-6,.font-style-6 > li,.font-style-6 > *, .fontpro-stacks_in_7391_13{font-size:22.00px }} 

 .font-style-7,.font-style-7 > li,.font-style-7 > *, .fontpro-stacks_in_7391_11{ font-size:24.00px ; color:rgba(255, 255, 255, 1.00) ;text-decoration-color:rgba(10, 10, 10, 1.00) ;}
  
  
  @media only screen and (min-width:25.875000em){ .font-style-7,.font-style-7 > li,.font-style-7 > *, .fontpro-stacks_in_7391_11{font-size:36.00px }} 
  @media only screen and (min-width:48.000000em){ .font-style-7,.font-style-7 > li,.font-style-7 > *, .fontpro-stacks_in_7391_11{font-size:42.00px }} 
  @media only screen and (min-width:75.000000em){ .font-style-7,.font-style-7 > li,.font-style-7 > *, .fontpro-stacks_in_7391_11{font-size:42.00px }} 

 .font-style-8,.font-style-8 > li,.font-style-8 > *, .fontpro-stacks_in_7391_10{ font-size:30.00px ; color:rgba(255, 255, 255, 1.00) ;text-decoration-color:rgba(0, 0, 0, 1.00) ;}
  
  
  @media only screen and (min-width:25.875000em){ .font-style-8,.font-style-8 > li,.font-style-8 > *, .fontpro-stacks_in_7391_10{font-size:30.00px }} 
  @media only screen and (min-width:48.000000em){ .font-style-8,.font-style-8 > li,.font-style-8 > *, .fontpro-stacks_in_7391_10{font-size:40.00px }} 
  @media only screen and (min-width:75.000000em){ .font-style-8,.font-style-8 > li,.font-style-8 > *, .fontpro-stacks_in_7391_10{font-size:48.00px }} 
.half-height{height:50vh ;}  
.fill-height{height:100% ;}  
.sticky-menu{background-color:rgba(144, 60, 44, 1.00) ;}
.sticky-menu:hover{background-color:rgba(85, 118, 88, 1.00) ;}
.sticky-menu{position:  sticky ;z-index:999 ;top:0px ;bottom:unset ;left:unset ;right:unset ;}
.sticky-menu{width:100% ;}  
            .menu{font-weight:400 ;}

 .sticky-menu, .fontpro-stacks_in_7408{line-height:1.50 ;letter-spacing:-0.01em ;word-spacing:0.00em ;text-indent:0.00em ;margin-left:0.00em ;margin-right:0.00em ; font-size:12.00px ; text-decoration-line:none ;text-decoration-style:solid ;text-transform:none ;word-wrap:normal ;word-break:normal ;-webkit-hyphens:none ;hyphens:none ;text-align:center ;}
     .sticky-menu>br, .fontpro-stacks_in_7408 > br{display:block;content:' ';padding-bottom:0.00em }
  @media only screen and (min-width:40em){ .sticky-menu, .fontpro-stacks_in_7408{}} 
  @media only screen and (min-width:25.875000em){ .sticky-menu, .fontpro-stacks_in_7408{font-size:16.00px }} 
  @media only screen and (min-width:48.000000em){ .sticky-menu, .fontpro-stacks_in_7408{font-size:16.00px }} 
  @media only screen and (min-width:62.500000em){ .sticky-menu, .fontpro-stacks_in_7408{font-size:18.00px }} 
.sticky-menu{filter:drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.60));}
.sticky-menu-item{--header-color:rgba(144, 60, 44, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(144, 60, 44, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(234, 106, 82, 1.00);--link-decoration:none;--link-decoration-hover:none}
.sticky-menu-item:hover{--header-color:rgba(85, 118, 88, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(85, 118, 88, 1.00);--link-color-hover:rgba(40, 61, 57, 1.00);--link-decoration:none;--link-decoration-hover:none}
.stacks_in_7412{--offcanvas-size-small:250px;--offcanvas-size-medium:250px;--offcanvas-size-large:250px}
/* Start Responsive Shim stack CSS code */.stacks_in_9582shim{	padding-top: 40px;}@media all and (max-width: 768px) {.stacks_in_9582shim{	padding-top: 40px;}}@media all and (max-width: 480px) {.stacks_in_9582shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9583shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9583shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_9583shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */
.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_7432 {
	height: 10.00px;
}




















@media print {
	#spacerStackstacks_in_7432 {
		display: none !important;
	}
}
.offcanvasmenubar{padding:0 ;} @media only screen and (min-width:40em){.offcanvasmenubar{padding:0 }}@media only screen and (min-width:64em){.offcanvasmenubar{padding:0 }} 
.offcanvasmenubar .menupanel{padding:0 ;} @media only screen and (min-width:40em){.offcanvasmenubar .menupanel{padding:0 }}@media only screen and (min-width:64em){.offcanvasmenubar .menupanel{padding:0 }} 
.offcanvasmenubar .menupanel-header{padding-top:0 ;padding-right:0 ;padding-bottom:0 ;padding-left:0.5rem ;}  
.offcanvasmenubar .menupanel-item{padding:0 ;} @media only screen and (min-width:40em){.offcanvasmenubar .menupanel-item{padding:0 }}@media only screen and (min-width:64em){.offcanvasmenubar .menupanel-item{padding:0 }} 
.offcanvasmenubar .off-canvas, .off-canvas-absolute{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(72, 72, 72, 1.00);--small-color:rgba(165, 165, 165, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(144, 60, 44, 1.00);--link-decoration:none;--link-decoration-hover:none}
.offcanvasmenubar .off-canvas, .off-canvas-absolute:hover{--header-color:rgba(85, 118, 88, 1.00);--subheader-color:rgba(72, 72, 72, 1.00);--small-color:rgba(165, 165, 165, 1.00);--text-color:rgba(144, 60, 44, 1.00);--link-color:rgba(85, 118, 88, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.offcanvasmenubar{background-color:rgba(121, 51, 73, 1.00) ;}
.menupanel-header{color:rgba(255, 255, 255, 1.00) ;}
.menupanel-item:hover{color:rgba(144, 60, 44, 1.00) ;}
.menupanel-item{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(200, 200, 200, 1.00);--link-decoration:none;--link-decoration-hover:none}
.menupanel-item:hover{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(200, 200, 200, 1.00);--link-color:rgba(200, 200, 200, 1.00);--link-color-hover:rgba(144, 60, 44, 1.00);--link-decoration:none;--link-decoration-hover:none}
.menupanel{background-color:rgba(121, 51, 73, 1.00) ;}
.menupanel-item{background-color:rgba(46, 46, 46, 1.00) ;}
.menupanel-header{background-color:rgba(144, 60, 44, 1.00) ;}
.menupanel-item .off-canvas, .off-canvas-absolute{padding:0 ;}  
.menupanel-divider{border-color:rgba(144, 60, 44, 1.00) ;border-width:1px 0px 0px 0px ;border-style:solid ;}
.sticky-topbar{position:  sticky ;z-index:9990 ;top:0px ;bottom:unset ;left:unset ;right:unset ;}
.sticky-topbar{background-color:rgba(121, 51, 73, 1.00) ;}
.sticky-hamburger{position:fixed   ;z-index:99999 ;top:10px ;bottom:unset ;left:unset ;right:0px ;}
.sticky-hamburger{background-color:rgba(212, 119, 147, 0.00) ;}
.sticky-hamburger{filter:drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.60));}
.topbar-hamburger{position:fixed   ;z-index:99999 ;top:10px ;bottom:unset ;left:unset ;right:0px ;}
.topbar-hamburger{background-color:rgba(212, 119, 147, 0.00) ;}
.topbar-menubutton{position:fixed   ;z-index:99999 ;top:10px ;bottom:unset ;left:unset ;right:10px ;}
.topbar-menubutton:hover{border-radius:0px ;}
.topbar-menubutton{background-color:rgba(121, 51, 73, 1.00) ;}
.topbar-menubutton{border-color:rgba(255, 255, 255, 1.00) ;border-width:1px ;}
.target.stacks_in_7482{    margin:0px;}.target.stacks_in_7482{z-index:999;}.target.stacks_in_7482.width-fill{width:calc(100% - 0px)}.target.stacks_in_7482.width-flexible{width:100%}.target.stacks_in_7482.width-fixed{width:250px}.target.stacks_in_7482.height-fill{height:calc(100% - 0px)}.target.stacks_in_7482.height-flexible{height:100%}.target.stacks_in_7482.height-fixed{height:250px}.target.stacks_in_7482[class*="relative-"].top-pt{top:10%}.target.stacks_in_7482[class*="relative-"].top-px{top:10px}.target.stacks_in_7482[class*="relative-"].bottom-pt{bottom:10%}.target.stacks_in_7482[class*="relative-"].bottom-px{bottom:10px}.target.stacks_in_7482[class*="relative-"].right-pt{right:50%}.target.stacks_in_7482[class*="relative-"].right-px{right:50px}.target.stacks_in_7482[class*="relative-"].left-pt{left:50%}.target.stacks_in_7482[class*="relative-"].left-px{left:50px}.target.stacks_in_7482.shift-up{margin-top:-0px}.target.stacks_in_7482.shift-down{margin-bottom:-0px}.target.stacks_in_7482.shift-left{right:0px}.target.stacks_in_7482.shift-right{left:0px}.target.stacks_in_7482.pin-top,.target.stacks_in_7482.pin-bottom{left:0px}.target.stacks_in_7482.pin-left,.target.stacks_in_7482.pin-right{top:0px}
.target.stacks_in_7491{    margin:10px;}.target.stacks_in_7491{z-index:9;}.target.stacks_in_7491.width-fill{width:calc(100% - 20px)}.target.stacks_in_7491.width-flexible{width:100%}.target.stacks_in_7491.width-fixed{width:250px}.target.stacks_in_7491.height-fill{height:calc(100% - 20px)}.target.stacks_in_7491.height-flexible{height:100%}.target.stacks_in_7491.height-fixed{height:250px}.target.stacks_in_7491[class*="relative-"].top-pt{top:10%}.target.stacks_in_7491[class*="relative-"].top-px{top:10px}.target.stacks_in_7491[class*="relative-"].bottom-pt{bottom:10%}.target.stacks_in_7491[class*="relative-"].bottom-px{bottom:10px}.target.stacks_in_7491[class*="relative-"].right-pt{right:10%}.target.stacks_in_7491[class*="relative-"].right-px{right:10px}.target.stacks_in_7491[class*="relative-"].left-pt{left:10%}.target.stacks_in_7491[class*="relative-"].left-px{left:10px}.target.stacks_in_7491.shift-up{margin-top:-70px}.target.stacks_in_7491.shift-down{margin-bottom:-70px}.target.stacks_in_7491.shift-left{right:70px}.target.stacks_in_7491.shift-right{left:70px}.target.stacks_in_7491.pin-top,.target.stacks_in_7491.pin-bottom{left:70px}.target.stacks_in_7491.pin-left,.target.stacks_in_7491.pin-right{top:70px}
/* Start dooJet stack each CSS code */#jetOverflowRestrict{	overflow: hidden !important;}.jetAnimate{visibility: hidden;}#stacks_in_7493{z-index: 101;overflow: visible;}.stacks_top{overflow: visible;}.stacks_in:after {content: "";display: block;height: 0;clear: both;}/* End dooJet stack each CSS code */
.target.stacks_in_7497{    margin:10px;}.target.stacks_in_7497{z-index:9;}.target.stacks_in_7497.width-fill{width:calc(100% - 20px)}.target.stacks_in_7497.width-flexible{width:100%}.target.stacks_in_7497.width-fixed{width:250px}.target.stacks_in_7497.height-fill{height:calc(100% - 20px)}.target.stacks_in_7497.height-flexible{height:100%}.target.stacks_in_7497.height-fixed{height:250px}.target.stacks_in_7497[class*="relative-"].top-pt{top:25%}.target.stacks_in_7497[class*="relative-"].top-px{top:25px}.target.stacks_in_7497[class*="relative-"].bottom-pt{bottom:25%}.target.stacks_in_7497[class*="relative-"].bottom-px{bottom:25px}.target.stacks_in_7497[class*="relative-"].right-pt{right:25%}.target.stacks_in_7497[class*="relative-"].right-px{right:25px}.target.stacks_in_7497[class*="relative-"].left-pt{left:25%}.target.stacks_in_7497[class*="relative-"].left-px{left:25px}.target.stacks_in_7497.shift-up{margin-top:-70px}.target.stacks_in_7497.shift-down{margin-bottom:-70px}.target.stacks_in_7497.shift-left{right:70px}.target.stacks_in_7497.shift-right{left:70px}.target.stacks_in_7497.pin-top,.target.stacks_in_7497.pin-bottom{left:70px}.target.stacks_in_7497.pin-left,.target.stacks_in_7497.pin-right{top:70px}
/* Start dooJet stack each CSS code */#jetOverflowRestrict{	overflow: hidden !important;}.jetAnimate{visibility: hidden;}#stacks_in_7499{z-index: 101;overflow: visible;}.stacks_top{overflow: visible;}.stacks_in:after {content: "";display: block;height: 0;clear: both;}/* End dooJet stack each CSS code */
.target.stacks_in_7503{    margin:10px;}.target.stacks_in_7503{z-index:9;}.target.stacks_in_7503.width-fill{width:calc(100% - 20px)}.target.stacks_in_7503.width-flexible{width:100%}.target.stacks_in_7503.width-fixed{width:250px}.target.stacks_in_7503.height-fill{height:calc(100% - 20px)}.target.stacks_in_7503.height-flexible{height:100%}.target.stacks_in_7503.height-fixed{height:250px}.target.stacks_in_7503[class*="relative-"].top-pt{top:35%}.target.stacks_in_7503[class*="relative-"].top-px{top:35px}.target.stacks_in_7503[class*="relative-"].bottom-pt{bottom:35%}.target.stacks_in_7503[class*="relative-"].bottom-px{bottom:35px}.target.stacks_in_7503[class*="relative-"].right-pt{right:35%}.target.stacks_in_7503[class*="relative-"].right-px{right:35px}.target.stacks_in_7503[class*="relative-"].left-pt{left:35%}.target.stacks_in_7503[class*="relative-"].left-px{left:35px}.target.stacks_in_7503.shift-up{margin-top:-70px}.target.stacks_in_7503.shift-down{margin-bottom:-70px}.target.stacks_in_7503.shift-left{right:70px}.target.stacks_in_7503.shift-right{left:70px}.target.stacks_in_7503.pin-top,.target.stacks_in_7503.pin-bottom{left:70px}.target.stacks_in_7503.pin-left,.target.stacks_in_7503.pin-right{top:70px}
/* Start dooJet stack each CSS code */#jetOverflowRestrict{	overflow: hidden !important;}.jetAnimate{visibility: hidden;}#stacks_in_7505{z-index: 101;overflow: visible;}.stacks_top{overflow: visible;}.stacks_in:after {content: "";display: block;height: 0;clear: both;}/* End dooJet stack each CSS code */
.target.stacks_in_7509{    margin:0px;}.target.stacks_in_7509{z-index:10;}.target.stacks_in_7509.width-fill{width:calc(100% - 0px)}.target.stacks_in_7509.width-flexible{width:85%}.target.stacks_in_7509.width-fixed{width:250px}.target.stacks_in_7509.height-fill{height:calc(100% - 0px)}.target.stacks_in_7509.height-flexible{height:28%}.target.stacks_in_7509.height-fixed{height:250px}.target.stacks_in_7509[class*="relative-"].top-pt{top:0%}.target.stacks_in_7509[class*="relative-"].top-px{top:0px}.target.stacks_in_7509[class*="relative-"].bottom-pt{bottom:0%}.target.stacks_in_7509[class*="relative-"].bottom-px{bottom:0px}.target.stacks_in_7509[class*="relative-"].right-pt{right:0%}.target.stacks_in_7509[class*="relative-"].right-px{right:0px}.target.stacks_in_7509[class*="relative-"].left-pt{left:0%}.target.stacks_in_7509[class*="relative-"].left-px{left:0px}.target.stacks_in_7509.shift-up{margin-top:-70px}.target.stacks_in_7509.shift-down{margin-bottom:-70px}.target.stacks_in_7509.shift-left{right:70px}.target.stacks_in_7509.shift-right{left:70px}.target.stacks_in_7509.pin-top,.target.stacks_in_7509.pin-bottom{left:70px}.target.stacks_in_7509.pin-left,.target.stacks_in_7509.pin-right{top:70px}
/* Start dooJet stack each CSS code */#jetOverflowRestrict{	overflow: hidden !important;}.jetAnimate{visibility: hidden;}#stacks_in_7511{z-index: 101;overflow: visible;}.stacks_top{overflow: visible;}.stacks_in:after {content: "";display: block;height: 0;clear: both;}/* End dooJet stack each CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7517shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code */.target.stacks_in_7521{    margin:0px;}.target.stacks_in_7521{z-index:10;}.target.stacks_in_7521.width-fill{width:calc(100% - 0px)}.target.stacks_in_7521.width-flexible{width:85%}.target.stacks_in_7521.width-fixed{width:250px}.target.stacks_in_7521.height-fill{height:calc(100% - 0px)}.target.stacks_in_7521.height-flexible{height:27%}.target.stacks_in_7521.height-fixed{height:250px}.target.stacks_in_7521[class*="relative-"].top-pt{top:0%}.target.stacks_in_7521[class*="relative-"].top-px{top:0px}.target.stacks_in_7521[class*="relative-"].bottom-pt{bottom:0%}.target.stacks_in_7521[class*="relative-"].bottom-px{bottom:0px}.target.stacks_in_7521[class*="relative-"].right-pt{right:0%}.target.stacks_in_7521[class*="relative-"].right-px{right:0px}.target.stacks_in_7521[class*="relative-"].left-pt{left:0%}.target.stacks_in_7521[class*="relative-"].left-px{left:0px}.target.stacks_in_7521.shift-up{margin-top:-70px}.target.stacks_in_7521.shift-down{margin-bottom:-70px}.target.stacks_in_7521.shift-left{right:70px}.target.stacks_in_7521.shift-right{left:70px}.target.stacks_in_7521.pin-top,.target.stacks_in_7521.pin-bottom{left:70px}.target.stacks_in_7521.pin-left,.target.stacks_in_7521.pin-right{top:70px}
/* Start dooJet stack each CSS code */#jetOverflowRestrict{	overflow: hidden !important;}.jetAnimate{visibility: hidden;}#stacks_in_7523{z-index: 101;overflow: visible;}.stacks_top{overflow: visible;}.stacks_in:after {content: "";display: block;height: 0;clear: both;}/* End dooJet stack each CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7529shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code */.target.stacks_in_7533{    margin:0px;}.target.stacks_in_7533{z-index:10;}.target.stacks_in_7533.width-fill{width:calc(100% - 0px)}.target.stacks_in_7533.width-flexible{width:75%}.target.stacks_in_7533.width-fixed{width:250px}.target.stacks_in_7533.height-fill{height:calc(100% - 0px)}.target.stacks_in_7533.height-flexible{height:30%}.target.stacks_in_7533.height-fixed{height:250px}.target.stacks_in_7533[class*="relative-"].top-pt{top:0%}.target.stacks_in_7533[class*="relative-"].top-px{top:0px}.target.stacks_in_7533[class*="relative-"].bottom-pt{bottom:0%}.target.stacks_in_7533[class*="relative-"].bottom-px{bottom:0px}.target.stacks_in_7533[class*="relative-"].right-pt{right:0%}.target.stacks_in_7533[class*="relative-"].right-px{right:0px}.target.stacks_in_7533[class*="relative-"].left-pt{left:0%}.target.stacks_in_7533[class*="relative-"].left-px{left:0px}.target.stacks_in_7533.shift-up{margin-top:-70px}.target.stacks_in_7533.shift-down{margin-bottom:-70px}.target.stacks_in_7533.shift-left{right:70px}.target.stacks_in_7533.shift-right{left:70px}.target.stacks_in_7533.pin-top,.target.stacks_in_7533.pin-bottom{left:70px}.target.stacks_in_7533.pin-left,.target.stacks_in_7533.pin-right{top:70px}
/* Start dooJet stack each CSS code */#jetOverflowRestrict{	overflow: hidden !important;}.jetAnimate{visibility: hidden;}#stacks_in_7535{z-index: 101;overflow: visible;}.stacks_top{overflow: visible;}.stacks_in:after {content: "";display: block;height: 0;clear: both;}/* End dooJet stack each CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7541shim{	padding-top: 10%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7544shim{	padding-top: 20%;}/* End Responsive Shim stack CSS code */@-webkit-keyframes mouser-scroll{0%,20%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}20%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}@keyframes mouser-scroll{0%,20%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}20%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}@-webkit-keyframes mouser-scroll-up{0%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}80%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%,80%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}}@keyframes mouser-scroll-up{0%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}100%,80%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}80%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}@-webkit-keyframes mouser-arrow-flow{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}@keyframes mouser-arrow-flow{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}
#mouser-stacks_in_7547{display:block;margin:0 auto;text-align:center; width:100%; margin:center;padding-bottom:50px}#mouser-stacks_in_7547 .mouser{width:26px;position:relative;margin:auto;cursor:pointer}#mouser-stacks_in_7547 .mouser.m-dz{width:100%}#mouser-stacks_in_7547 .mouser.m-dz .fa,#mouser-stacks_in_7547 .mouser.m-dz p{color:rgba(255, 255, 255, 1.00)!important}#mouser-stacks_in_7547 .scrolltext{color:rgba(204, 204, 204, 1.00);display:block;font-size:12px;text-align:center;cursor:pointer;-webkit-transition:color 140ms ease;transition:color 140ms ease}#mouser-stacks_in_7547 .m-wrap{display:inline-block;text-align:center}#mouser-stacks_in_7547 .m-wrap.m-dz.dz-block{display:block} #mouser-stacks_in_7547 .mouser.m-arrows{height:50px}#mouser-stacks_in_7547 .mouser.m-arrows .mouser_arrows{display:block;border-right:2px solid rgba(255, 255, 255, 1.00);border-bottom:2px solid rgba(255, 255, 255, 1.00);margin:0 0 3px 4px;width:16px;height:16px;-webkit-transition:all 140ms ease;transition:all 140ms ease;-webkit-animation:mouser-arrow-flow 1s infinite;animation:mouser-arrow-flow 1s infinite;-webkit-animation-direction:alternate;animation-direction:alternate}#mouser-stacks_in_7547 .mouser.m-arrows .mouser_arrows.ma1{margin-top:1px}#mouser-stacks_in_7547 .mouser.m-arrows .mouser_arrows.ma2{margin-top:-6px}#mouser-stacks_in_7547 .mouser.m-arrows .mouser_arrows.ma3{margin-top:-6px}#mouser-stacks_in_7547 .mouser.m-arrows.m-dn .mouser_arrows{-webkit-transform:rotate(45deg);transform:rotate(45deg)}#mouser-stacks_in_7547 .mouser.m-arrows.m-dn .mouser_arrows.ma1{-webkit-animation-delay:.1s;animation-delay:.1s}#mouser-stacks_in_7547 .mouser.m-arrows.m-dn .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}#mouser-stacks_in_7547 .mouser.m-arrows.m-dn .mouser_arrows.ma3{-webkit-animation-delay:.3s;animation-delay:.3s}#mouser-stacks_in_7547 .mouser.m-arrows.m-up .mouser_arrows{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}#mouser-stacks_in_7547 .mouser.m-arrows.m-up .mouser_arrows.ma1{-webkit-animation-delay:.3s;animation-delay:.3s}#mouser-stacks_in_7547 .mouser.m-arrows.m-up .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}#mouser-stacks_in_7547 .mouser.m-arrows.m-up .mouser_arrows.ma3{-webkit-animation-delay:.1s;animation-delay:.1s}  #mouser-stacks_in_7547 .m-wrap:hover .mouser.m-mouse{border:2px solid rgba(220, 220, 220, 1.00)}#mouser-stacks_in_7547 .m-wrap:hover .mouser.m-mouse::after{background-color:rgba(153, 153, 153, 1.00)}#mouser-stacks_in_7547 .m-wrap:hover .mouser.m-arrows>.mouser_arrows{border-right:2px solid rgba(220, 220, 220, 1.00);border-bottom:2px solid rgba(220, 220, 220, 1.00)}#mouser-stacks_in_7547 .m-wrap:hover .mouser.m-dz .fa,#mouser-stacks_in_7547 .m-wrap:hover .mouser.m-dz p{color:rgba(220, 220, 220, 1.00)!important}#mouser-stacks_in_7547 .m-wrap:hover .scrolltext{color:rgba(102, 102, 102, 1.00)} .mouser .mouser_arrows{display:block;border-right:2px solid rgba(255, 255, 255, 1.00);border-bottom:2px solid rgba(255, 255, 255, 1.00);margin:0 0 3px 4px;width:16px;height:16px;-webkit-animation:mouser-arrow-flow 1s infinite;animation:mouser-arrow-flow 1s infinite;-webkit-animation-direction:alternate;animation-direction:alternate}.mouser .mouser_arrows.ma1{margin-top:1px}.mouser .mouser_arrows.ma2{margin-top:-6px}.mouser .mouser_arrows.ma3{margin-top:-6px}.mouser.m-dn .mouser_arrows{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.mouser.m-dn .mouser_arrows.ma1{-webkit-animation-delay:.1s;animation-delay:.1s}.mouser.m-dn .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}.mouser.m-dn .mouser_arrows.ma3{-webkit-animation-delay:.3s;animation-delay:.3s}.mouser.m-up .mouser_arrows{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.mouser.m-up .mouser_arrows.ma1{-webkit-animation-delay:.3s;animation-delay:.3s}.mouser.m-up .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}.mouser.m-up .mouser_arrows.ma3{-webkit-animation-delay:.1s;animation-delay:.1s}

.hero{background-image:url('../files/bgimage-9639.png') ;background-repeat:no-repeat    ;background-size:  cover ;background-position:right center ;background-attachment:scroll   ;background-origin:padding-box ;background-blend-mode:screen ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.hero{background-attachment:scroll!important}}@media only screen and (min-width:40em){.hero{background-image:url('../files/bgimageMedium-9639.png') }}@media only screen and (min-width:64em){.hero{background-image:url('../files/bgimageLarge-9639.png') }}
.hero-overlay{background-color:rgba(0, 0, 0, 0.70) ;}
.hero-overlay{height:100vh ;}  
h1{text-shadow:2px 2px 5px rgba(0, 0, 0, 0.60);}
#toTop{display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:51px;height:51px;border:none;text-indent:-9999px;background:url(../files/elevator-images/top.png) no-repeat left top;z-index:9988}#toTop:hover{background:url(../files/elevator-images/top.png) no-repeat left -51px}#toTop:active,#toTop:focus{outline:none}
/* Start Responsive Shim stack CSS code */.stacks_in_7551shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_7551shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_7551shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_7551 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_7558shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_7558shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_7558shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */#stacks_in_7561 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_7561 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_7561 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_7561 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_7561 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_7561{overflow:hidden;margin:0;padding:0}#totem_stacks_in_7561 li{overflow:hidden;display:block;border-bottom:1px solid #557659}#totem_prev_stacks_in_7561{bottom:-0px}#totem_next_stacks_in_7561{top:-0px}#totem_stacks_in_7561 li{height:70px}





#stacks_in_7577 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_7577 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_7577 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_7577 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_7577 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_7577{overflow:hidden;margin:0;padding:0}#totem_stacks_in_7577 li{overflow:hidden;display:block;border-bottom:1px solid #557658}#totem_prev_stacks_in_7577{bottom:-0px}#totem_next_stacks_in_7577{top:-0px}#totem_stacks_in_7577 li{height:75px}





#stacks_in_7590 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_7590 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_7590 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_7590 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_7590 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_7590{overflow:hidden;margin:0;padding:0}#totem_stacks_in_7590 li{overflow:hidden;display:block;border-bottom:1px solid #557658}#totem_prev_stacks_in_7590{bottom:-0px}#totem_next_stacks_in_7590{top:-0px}#totem_stacks_in_7590 li{height:75px}





/* Start Responsive Shim stack CSS code */.stacks_in_7607shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7608shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */.stacks_in_7611 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}



#stacks_in_7619 {
	margin: 10px 0px 5px 0px;
}

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



/* Start Responsive Shim stack CSS code */.stacks_in_7635shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7636shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7637shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code *//* 
 * Simple Text
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.8.2
 */

#simpleText_stacks_in_7643 {
	position: relative;
	color: #FFFFFF;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_7643.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_7643.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_7643.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_7643.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_7643.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_7643.inheritOff a, #simpleText_stacks_in_7643.inheritOff a:link {
	color: #FFFFFF;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_7643.inheritOff a:visited {
	color: #FFFFFF;
}
#simpleText_stacks_in_7643.inheritOff a:hover {
	color: #000000;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_7643.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_7643.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_7643.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_7643.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_7643.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_7643.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_7643.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* Start Responsive Shim stack CSS code */.stacks_in_7645shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_7645shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_7645shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7646shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_7646shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_7646shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_7646 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9166shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9315shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9167shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */
.stacks_in_9179 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

/* Start Responsive Shim stack CSS code */.stacks_in_9183shim{	padding-top: 30px;}@media all and (max-width: 768px) {.stacks_in_9183shim{	padding-top: 30px;}}@media all and (max-width: 414px) {.stacks_in_9183shim{	padding-top: 30px;}}/* End Responsive Shim stack CSS code */


#stacks_in_9372 {
	position: relative;
	display: block;
}

.news01 {
	position: relative;
	
	
}






	
	#stacks_in_9372 .cpsl_news01 {
		padding: 0px;
	}
	






#stacks_in_9191 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9191 img.maxwidth{max-width:350px}#stacks_in_9191 img.maxheight{width:auto;max-height:250px}

#stacks_in_9191 {
	margin: 20px 0px 30px 0px;
}
#stacks_in_9193 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9193 img.maxwidth{max-width:350px}#stacks_in_9193 img.maxheight{width:auto;max-height:300px}

#stacks_in_9193 {
	margin: 0px 0px 30px 0px;
}
#stacks_in_9194 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9194 img.maxwidth{max-width:350px}#stacks_in_9194 img.maxheight{width:auto;max-height:370px}

#stacks_in_9194 {
	margin: 55px 0px 30px 0px;
}
#stacks_in_9371 .trigger_news01 {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9371 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9371 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9371 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9371 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9371 {
	position: relative;
	text-align: left;
}

#stacks_in_9371 .trigger_label,
#stacks_in_9371 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9371 .trigger_label_open {
	display: none;
}
.stacks_in_9200 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

/* Start Responsive Shim stack CSS code */.stacks_in_9204shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9204shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_9204shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */


#stacks_in_9383 {
	position: relative;
	display: block;
}

.news02 {
	position: relative;
	
	
}






	
	#stacks_in_9383 .cpsl_news02 {
		padding: 0px;
	}
	






#stacks_in_9212 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9212 img.maxwidth{max-width:350px}#stacks_in_9212 img.maxheight{width:auto;max-height:250px}

#stacks_in_9212 {
	margin: 20px 0px 30px 0px;
}
#stacks_in_9214 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9214 img.maxwidth{max-width:350px}#stacks_in_9214 img.maxheight{width:auto;max-height:300px}

#stacks_in_9214 {
	margin: 0px 0px 30px 0px;
}
#stacks_in_9215 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9215 img.maxwidth{max-width:350px}#stacks_in_9215 img.maxheight{width:auto;max-height:370px}

#stacks_in_9215 {
	margin: 55px 0px 30px 0px;
}
#stacks_in_9460 .trigger_news02 {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9460 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9460 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9460 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9460 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9460 {
	position: relative;
	text-align: left;
}

#stacks_in_9460 .trigger_label,
#stacks_in_9460 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9460 .trigger_label_open {
	display: none;
}
.stacks_in_9221 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

/* Start Responsive Shim stack CSS code */.stacks_in_9225shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9225shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_9225shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */


#stacks_in_9394 {
	position: relative;
	display: block;
}

.news03 {
	position: relative;
	
	
}






	
	#stacks_in_9394 .cpsl_news03 {
		padding: 0px;
	}
	






#stacks_in_9400 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9400 img.maxwidth{max-width:350px}#stacks_in_9400 img.maxheight{width:auto;max-height:250px}

#stacks_in_9400 {
	margin: 20px 0px 30px 0px;
}
#stacks_in_9402 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9402 img.maxwidth{max-width:350px}#stacks_in_9402 img.maxheight{width:auto;max-height:300px}

#stacks_in_9402 {
	margin: 0px 0px 30px 0px;
}
#stacks_in_9403 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9403 img.maxwidth{max-width:350px}#stacks_in_9403 img.maxheight{width:auto;max-height:370px}

#stacks_in_9403 {
	margin: 55px 0px 30px 0px;
}
#stacks_in_9461 .trigger_news03 {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9461 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9461 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9461 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9461 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9461 {
	position: relative;
	text-align: left;
}

#stacks_in_9461 .trigger_label,
#stacks_in_9461 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9461 .trigger_label_open {
	display: none;
}
.stacks_in_9405 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

/* Start Responsive Shim stack CSS code */.stacks_in_9409shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9409shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_9409shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */


#stacks_in_9413 {
	position: relative;
	display: block;
}

.news04 {
	position: relative;
	
	
}






	
	#stacks_in_9413 .cpsl_news04 {
		padding: 0px;
	}
	






#stacks_in_9418 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9418 img.maxwidth{max-width:350px}#stacks_in_9418 img.maxheight{width:auto;max-height:250px}

#stacks_in_9418 {
	margin: 20px 0px 30px 0px;
}
#stacks_in_9420 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9420 img.maxwidth{max-width:350px}#stacks_in_9420 img.maxheight{width:auto;max-height:300px}

#stacks_in_9420 {
	margin: 0px 0px 30px 0px;
}
#stacks_in_9421 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9421 img.maxwidth{max-width:350px}#stacks_in_9421 img.maxheight{width:auto;max-height:370px}

#stacks_in_9421 {
	margin: 55px 0px 30px 0px;
}
#stacks_in_9462 .trigger_news04 {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9462 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9462 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9462 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9462 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9462 {
	position: relative;
	text-align: left;
}

#stacks_in_9462 .trigger_label,
#stacks_in_9462 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9462 .trigger_label_open {
	display: none;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9423shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9423shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_9423shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */.stacks_in_9245 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}


#stacks_in_9424 {
	position: relative;
	display: block;
}

.newsA {
	position: relative;
	
	
}






	
	#stacks_in_9424 .cpsl_newsA {
		padding: 0px;
	}
	





#stacks_in_9424 {
	margin: 20px 0px 15px 0px;
}

#stacks_in_9463 .trigger_newsA {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9463 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9463 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9463 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9463 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9463 {
	position: relative;
	text-align: left;
}

#stacks_in_9463 .trigger_label,
#stacks_in_9463 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9463 .trigger_label_open {
	display: none;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9252shim{	padding-top: 50px;}@media all and (max-width: 768px) {.stacks_in_9252shim{	padding-top: 45px;}}@media all and (max-width: 414px) {.stacks_in_9252shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code */
/* Start Responsive Shim stack CSS code */.stacks_in_9255shim{	padding-top: 30px;}@media all and (max-width: 768px) {.stacks_in_9255shim{	padding-top: 30px;}}@media all and (max-width: 414px) {.stacks_in_9255shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9261shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */
.stacks_in_9316 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}




#stacks_in_9369 {
	position: relative;
	display: block;
}

.news01 {
	position: relative;
	
	
}






	
	#stacks_in_9369 .cpsl_news01 {
		padding: 0px;
	}
	





#stacks_in_9325 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9325 img.maxwidth{max-width:350px}#stacks_in_9325 img.maxheight{width:auto;max-height:400px}

#stacks_in_9325 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_9464 .trigger_news01 {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9464 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9464 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9464 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9464 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9464 {
	position: relative;
	text-align: left;
}

#stacks_in_9464 .trigger_label,
#stacks_in_9464 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9464 .trigger_label_open {
	display: none;
}




#stacks_in_9465 {
	position: relative;
	display: block;
}

.news02 {
	position: relative;
	
	
}






	
	#stacks_in_9465 .cpsl_news02 {
		padding: 0px;
	}
	





#stacks_in_9335 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9335 img.maxwidth{max-width:350px}#stacks_in_9335 img.maxheight{width:auto;max-height:400px}

#stacks_in_9335 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_9466 .trigger_news02 {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9466 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9466 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9466 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9466 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9466 {
	position: relative;
	text-align: left;
}

#stacks_in_9466 .trigger_label,
#stacks_in_9466 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9466 .trigger_label_open {
	display: none;
}




#stacks_in_9470 {
	position: relative;
	display: block;
}

.news03 {
	position: relative;
	
	
}






	
	#stacks_in_9470 .cpsl_news03 {
		padding: 0px;
	}
	





#stacks_in_9297 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9297 img.maxwidth{max-width:350px}#stacks_in_9297 img.maxheight{width:auto;max-height:400px}

#stacks_in_9297 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_9471 .trigger_news03 {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9471 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9471 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9471 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9471 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9471 {
	position: relative;
	text-align: left;
}

#stacks_in_9471 .trigger_label,
#stacks_in_9471 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9471 .trigger_label_open {
	display: none;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9494shim{	padding-top: 50px;}@media all and (max-width: 768px) {.stacks_in_9494shim{	padding-top: 45px;}}@media all and (max-width: 414px) {.stacks_in_9494shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code */.stacks_in_9268 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}




#stacks_in_9475 {
	position: relative;
	display: block;
}

.news04 {
	position: relative;
	
	
}






	
	#stacks_in_9475 .cpsl_news04 {
		padding: 0px;
	}
	





#stacks_in_9307 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_9307 img.maxwidth{max-width:350px}#stacks_in_9307 img.maxheight{width:auto;max-height:400px}

#stacks_in_9307 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_9476 .trigger_news04 {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9476 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9476 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9476 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9476 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9476 {
	position: relative;
	text-align: left;
}

#stacks_in_9476 .trigger_label,
#stacks_in_9476 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9476 .trigger_label_open {
	display: none;
}
.stacks_in_9498 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}


#stacks_in_9490 {
	position: relative;
	display: block;
}

.newsA {
	position: relative;
	
	
}






	
	#stacks_in_9490 .cpsl_newsA {
		padding: 0px;
	}
	





#stacks_in_9490 {
	margin: 20px 0px 10px 0px;
}

#stacks_in_9493 .trigger_newsA {
	cursor: pointer;
	display: inline-block;
	color: #FFFFFF;

	
	font-size: 14px;
	line-height: 14px;
	

	padding-left: 1px;
}

#stacks_in_9493 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_9493 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_9493 .toggle_open .closed_image {
	display: none;
}

#stacks_in_9493 .toggle_closed .open_image {
	display: none;
}



#stacks_in_9493 {
	position: relative;
	text-align: left;
}

#stacks_in_9493 .trigger_label,
#stacks_in_9493 .trigger_label_open {
	font-size: 15px;
	color: #FFFFFF;
	margin-left: 4px;
	
	line-height: 14px;
	vertical-align: top;
	
}

#stacks_in_9493 .trigger_label_open {
	display: none;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9309shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7794shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_7794shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_7794shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_7794 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 2px 0px 0px 0px;
}
.hero-kirsten{background-image:url('../files/bgimage-2-1B7.png') ;background-repeat:no-repeat    ;background-size:  cover ;background-position:center center ;background-attachment:scroll   ;background-origin:padding-box ;background-blend-mode:multiply ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.hero-kirsten{background-attachment:scroll!important}}@media only screen and (min-width:40em){.hero-kirsten{background-image:url('../files/bgimageMedium-2-1B7.png') }}@media only screen and (min-width:64em){.hero-kirsten{background-image:url('../files/bgimageLarge-2-1B7.png') }}
.hero-overlay-kirsten{background-color:var(--white-color) ;background-color:rgba(255, 255, 255, 0.77) ;}
.hero-overlay-kirsten{height:100% ;}  
h1-kirsten{text-shadow:2px 2px 5px rgba(0, 0, 0, 0.60);}
/* Start Responsive Shim stack CSS code */.stacks_in_7796_49shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7796_50shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */
.stacks_in_7796_22 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}




/* Start Responsive Shim stack CSS code */.stacks_in_7796_27shim{	padding-top: 5px;}@media all and (max-width: 768px) {.stacks_in_7796_27shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_7796_27shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */



/* Start Responsive Shim stack CSS code */.stacks_in_7796_35shim{	padding-top: 5px;}@media all and (max-width: 768px) {.stacks_in_7796_35shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_7796_35shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */
#stacks_in_7796_39 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_7796_39 img.maxwidth{max-width:350px}#stacks_in_7796_39 img.maxheight{width:auto;max-height:300px}

#stacks_in_7796_39 {
	padding: 35px 0px 40px 0px;
}
#stacks_in_7796_41 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_7796_41 img.maxwidth{max-width:350px}#stacks_in_7796_41 img.maxheight{width:auto;max-height:300px}

#stacks_in_7796_41 {
	padding: 20px 0px 30px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_7796_42shim{	padding-top: 5px;}@media all and (max-width: 768px) {.stacks_in_7796_42shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_7796_42shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */


/* Start Responsive Shim stack CSS code */.stacks_in_7796_46shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_7796_46shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_7796_46shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7796_51shim{	padding-top: 6%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7796_52shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7797shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_7797shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_7797shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_7797 {
	border: solid rgba(171, 131, 85, 1.00);
	border-width: 2px 0px 0px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_7800shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7801shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */


#stacks_in_7811 {
	margin: 0px 0px 10px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9581shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9581shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_9581shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */.stacks_in_7813 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

/*  */
#flex-stacks_in_7823 {
  margin: 0 auto;
  max-width: 700px; }
  #flex-stacks_in_7823 .flex-controls {
    /*  */
    font-family: "Fira Sans";
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #flex-stacks_in_7823 .flex-controls.no-inner-text #flex-toggle-stacks_in_7823::before {
      display: none; }
    #flex-stacks_in_7823 .flex-controls.no-outer-text #flex-toggle-text-stacks_in_7823 {
      display: none; }
    #flex-stacks_in_7823 .flex-controls #flex-toggle-text-stacks_in_7823 {
      color: rgba(85, 118, 88, 1.00);
      font-size: 13px;
      cursor: pointer;
      font-weight: bold;
      margin-right: 10px;
      display: inline-block; }
      #flex-stacks_in_7823 .flex-controls #flex-toggle-text-stacks_in_7823::before {
        display: inline-block;
        content: 'sluit'; }
      #flex-stacks_in_7823 .flex-controls #flex-toggle-text-stacks_in_7823.off::before {
        content: 'toon alles'; }
    #flex-stacks_in_7823 .flex-controls #flex-toggle-stacks_in_7823 {
      width: 40px;
      height: 20px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      position: relative;
      background: rgba(85, 118, 88, 1.00);
      transition: background 1s ease; }
      #flex-stacks_in_7823 .flex-controls #flex-toggle-stacks_in_7823::before {
        content: 'ON';
        top: 50%;
        left: 50%;
        display: block;
        opacity: 0;
        font-size: 12px;
        color: rgba(85, 118, 88, 1.00);
        font-weight: bold;
        position: absolute;
        font-family: "Roboto";
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-animation-name: text-animation-off;
                animation-name: text-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_7823 .flex-controls #flex-toggle-stacks_in_7823 .flex-toggle-inner {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        width: 100%;
        border-radius: inherit;
        max-width: 40px;
        background: rgba(255, 255, 255, 1.00);
        transition: all 0.3s ease-out;
        -webkit-animation-name: toggle-animation-off;
                animation-name: toggle-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_7823 .flex-controls #flex-toggle-stacks_in_7823.off {
        background: rgba(60, 85, 76, 1.00); }
        #flex-stacks_in_7823 .flex-controls #flex-toggle-stacks_in_7823.off .flex-toggle-inner {
          -webkit-animation-name: toggle-animation-on;
                  animation-name: toggle-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
        #flex-stacks_in_7823 .flex-controls #flex-toggle-stacks_in_7823.off::before {
          content: 'OFF';
          color: rgba(60, 85, 76, 1.00);
          -webkit-animation-name: text-animation-on;
                  animation-name: text-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
  #flex-stacks_in_7823 .flex-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0px;
    overflow: hidden;
    list-style-type: none; }
    #flex-stacks_in_7823 .flex-grid-row {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 {
      box-sizing: border-box;
      transition: all 0.3s ease; }
      #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823 {
        height: 0;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease; }
        #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823 .flex-item-content-inner-stacks_in_7823 {
          /*  */
          font-family: "Fira Sans";
          /*  */
          z-index: 10;
          position: relative;
          padding: 10px 10px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823::before {
          z-index: 5;
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          position: absolute; }
      #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 {
        /*  */
        font-family: "Fira Sans";
        /*  */
        padding: 10px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        position: relative;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        transition: all 0.2s ease; }
        #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823:hover {
          /*  */
          padding: 20px 10px;
          box-sizing: border-box;
          transition: 0.3s ease;
          /*  */ }
          #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823:hover .header-toggle-icon {
            /*  */
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: 0.3s ease;
            /*  */ }
        #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon, #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title, #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
          z-index: 2; }
        #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
          font-size: 0px;
          margin-right: 20px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
          font-size: 20px;
          margin-left: auto;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
          font-size: 24px;
          line-height: 33.599998px;
          font-weight: bold;
          margin-right: 20px;
          letter-spacing: 1px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823::before {
          content: '';
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1; }
  #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823 {
    height: auto; }
  #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 {
    padding: 10px 10px; }
    #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823:hover {
      padding: 10px 10px; }
      #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823:hover .header-toggle-icon {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
      font-size: 30px; }
    #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon::before {
      content: '\f12a';
      transition: all 0.3s ease; }
    #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823::before {
      display: block; }

#flex-stacks_in_7823.layout-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#flex-stacks_in_7823.no-open-all-toggle .flex-controls {
  display: none; }

#flex-stacks_in_7823.uppercase-headers .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 {
  text-transform: uppercase; }

#flex-stacks_in_7823.shared-background .flex-grid-item-stacks_in_7823 {
  /*  */
  background: rgba(85, 118, 88, 1.00) !important;
  /*  */
  /*  */
  /*  */ }

#flex-stacks_in_7823.shared-header-overlay .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823::before {
  background: rgba(0, 0, 0, 0.50) !important; }

#flex-stacks_in_7823.header-hover-overlays .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823:hover::before {
  /*  */
  display: block;
  /*  */ }

#flex-stacks_in_7823.header-hover-overlays .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823:hover .header-title, #flex-stacks_in_7823.header-hover-overlays .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823:hover .header-toggle-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_7823.header-hover-overlays .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823:hover .header-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_7823.shared-title .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title, #flex-stacks_in_7823.shared-title .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7823.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title, #flex-stacks_in_7823.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7823.shared-icon .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7823.shared-icon .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7823.shared-content-text .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823 .flex-item-content-inner-stacks_in_7823 {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7823.shared-content-overlay .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823::before {
  background: rgba(0, 0, 0, 0.00) !important; }

@media (min-width: 480px) and (max-width: 768px) {
  #flex-stacks_in_7823 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
      font-size: 24px;
      line-height: 33.599998px; }
    #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
    font-size: 30px;
    line-height: 42.000000px; } }

@media (max-width: 480px) {
  #flex-stacks_in_7823 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
      font-size: 20px;
      line-height: 28.000000px; }
    #flex-stacks_in_7823 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_7823 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
    font-size: 26px;
    line-height: 36.399998px; } }

@-webkit-keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@-webkit-keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@-webkit-keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
#flex-item-stacks_in_9143 .flex-grid-item-stacks_in_7823 {
  /*  */
  background: rgba(85, 118, 88, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9143 .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9143 .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823 .flex-item-content-inner-stacks_in_7823 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9143 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9143 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9143 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9143 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9143.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9143.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9143.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
  color: rgba(255, 255, 255, 1.00); }


#stacks_in_9144 {
	padding: 0px 20px 0px 20px;
}
/*  */
#flex-stacks_in_9146 {
  margin: 0 auto;
  max-width: 700px; }
  #flex-stacks_in_9146 .flex-controls {
    /*  */
    font-family: "Fira Sans";
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #flex-stacks_in_9146 .flex-controls.no-inner-text #flex-toggle-stacks_in_9146::before {
      display: none; }
    #flex-stacks_in_9146 .flex-controls.no-outer-text #flex-toggle-text-stacks_in_9146 {
      display: none; }
    #flex-stacks_in_9146 .flex-controls #flex-toggle-text-stacks_in_9146 {
      color: rgba(60, 85, 76, 1.00);
      font-size: 13px;
      cursor: pointer;
      font-weight: bold;
      margin-right: 10px;
      display: inline-block; }
      #flex-stacks_in_9146 .flex-controls #flex-toggle-text-stacks_in_9146::before {
        display: inline-block;
        content: 'sluit'; }
      #flex-stacks_in_9146 .flex-controls #flex-toggle-text-stacks_in_9146.off::before {
        content: 'toon alles'; }
    #flex-stacks_in_9146 .flex-controls #flex-toggle-stacks_in_9146 {
      width: 40px;
      height: 20px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      position: relative;
      background: rgba(85, 118, 88, 1.00);
      transition: background 1s ease; }
      #flex-stacks_in_9146 .flex-controls #flex-toggle-stacks_in_9146::before {
        content: 'ON';
        top: 50%;
        left: 50%;
        display: block;
        opacity: 0;
        font-size: 12px;
        color: rgba(85, 118, 88, 1.00);
        font-weight: bold;
        position: absolute;
        font-family: "Roboto";
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-animation-name: text-animation-off;
                animation-name: text-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_9146 .flex-controls #flex-toggle-stacks_in_9146 .flex-toggle-inner {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        width: 100%;
        border-radius: inherit;
        max-width: 40px;
        background: rgba(255, 255, 255, 1.00);
        transition: all 0.3s ease-out;
        -webkit-animation-name: toggle-animation-off;
                animation-name: toggle-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_9146 .flex-controls #flex-toggle-stacks_in_9146.off {
        background: rgba(101, 101, 101, 1.00); }
        #flex-stacks_in_9146 .flex-controls #flex-toggle-stacks_in_9146.off .flex-toggle-inner {
          -webkit-animation-name: toggle-animation-on;
                  animation-name: toggle-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
        #flex-stacks_in_9146 .flex-controls #flex-toggle-stacks_in_9146.off::before {
          content: 'OFF';
          color: rgba(101, 101, 101, 1.00);
          -webkit-animation-name: text-animation-on;
                  animation-name: text-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
  #flex-stacks_in_9146 .flex-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0px;
    overflow: hidden;
    list-style-type: none; }
    #flex-stacks_in_9146 .flex-grid-row {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 {
      box-sizing: border-box;
      transition: all 0.3s ease; }
      #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146 {
        height: 0;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease; }
        #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146 .flex-item-content-inner-stacks_in_9146 {
          /*  */
          font-family: "Fira Sans";
          /*  */
          z-index: 10;
          position: relative;
          padding: 10px 10px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146::before {
          z-index: 5;
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          position: absolute; }
      #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 {
        /*  */
        font-family: "Fira Sans";
        /*  */
        padding: 10px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        position: relative;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        transition: all 0.2s ease; }
        #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146:hover {
          /*  */
          padding: 20px 10px;
          box-sizing: border-box;
          transition: 0.3s ease;
          /*  */ }
          #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146:hover .header-toggle-icon {
            /*  */
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: 0.3s ease;
            /*  */ }
        #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon, #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title, #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
          z-index: 2; }
        #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
          font-size: 0px;
          margin-right: 20px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
          font-size: 20px;
          margin-left: auto;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
          font-size: 18px;
          line-height: 25.199999px;
          font-weight: bold;
          margin-right: 20px;
          letter-spacing: 1px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146::before {
          content: '';
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1; }
  #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146 {
    height: auto; }
  #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 {
    padding: 0px 10px; }
    #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146:hover {
      padding: 0px 10px; }
      #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146:hover .header-toggle-icon {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
      font-size: 18px; }
    #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon::before {
      content: '\f12a';
      transition: all 0.3s ease; }
    #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146::before {
      display: block; }

#flex-stacks_in_9146.layout-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#flex-stacks_in_9146.no-open-all-toggle .flex-controls {
  display: none; }

#flex-stacks_in_9146.uppercase-headers .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 {
  text-transform: uppercase; }

#flex-stacks_in_9146.shared-background .flex-grid-item-stacks_in_9146 {
  /*  */
  background: rgba(85, 118, 88, 1.00) !important;
  /*  */
  /*  */
  /*  */ }

#flex-stacks_in_9146.shared-header-overlay .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146::before {
  background: rgba(0, 0, 0, 0.00) !important; }

#flex-stacks_in_9146.header-hover-overlays .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146:hover::before {
  /*  */
  display: block;
  /*  */ }

#flex-stacks_in_9146.header-hover-overlays .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146:hover .header-title, #flex-stacks_in_9146.header-hover-overlays .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146:hover .header-toggle-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_9146.header-hover-overlays .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146:hover .header-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_9146.shared-title .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title, #flex-stacks_in_9146.shared-title .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
  color: rgba(60, 85, 76, 1.00) !important; }

#flex-stacks_in_9146.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title, #flex-stacks_in_9146.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9146.shared-icon .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9146.shared-icon .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9146.shared-content-text .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146 .flex-item-content-inner-stacks_in_9146 {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9146.shared-content-overlay .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146::before {
  background: rgba(255, 255, 255, 1.00) !important; }

@media (min-width: 480px) and (max-width: 768px) {
  #flex-stacks_in_9146 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@media (max-width: 480px) {
  #flex-stacks_in_9146 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_9146 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_9146 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@-webkit-keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@-webkit-keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@-webkit-keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
#flex-item-stacks_in_9147 .flex-grid-item-stacks_in_9146 {
  /*  */
  background: rgba(85, 118, 88, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9147 .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9147 .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146 .flex-item-content-inner-stacks_in_9146 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9147 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9147 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9147 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9147 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9147.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9147.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9147.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_9148 #stacks_in_9148printablestack
{
	color:#3C554C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_9148 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_9148 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_9148 #stacks_in_9148printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_9153 .flex-grid-item-stacks_in_9146 {
  /*  */
  background: rgba(85, 118, 88, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9153 .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9153 .flex-grid-item-stacks_in_9146 .flex-item-content-stacks_in_9146 .flex-item-content-inner-stacks_in_9146 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9153 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9153 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9153 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9153 .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9153.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9153.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9153.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9146 .flex-item-header-stacks_in_9146 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_9154 #stacks_in_9154printablestack
{
	color:#3C554C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_9154 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_9154 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_9154 #stacks_in_9154printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_9542 .flex-grid-item-stacks_in_7823 {
  /*  */
  background: rgba(85, 118, 88, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9542 .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9542 .flex-grid-item-stacks_in_7823 .flex-item-content-stacks_in_7823 .flex-item-content-inner-stacks_in_7823 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9542 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9542 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9542 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9542 .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9542.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9542.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9542.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7823 .flex-item-header-stacks_in_7823 .header-title {
  color: rgba(255, 255, 255, 1.00); }


#stacks_in_9543 {
	padding: 0px 20px 0px 20px;
}
/*  */
#flex-stacks_in_9545 {
  margin: 0 auto;
  max-width: 700px; }
  #flex-stacks_in_9545 .flex-controls {
    /*  */
    font-family: "Fira Sans";
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #flex-stacks_in_9545 .flex-controls.no-inner-text #flex-toggle-stacks_in_9545::before {
      display: none; }
    #flex-stacks_in_9545 .flex-controls.no-outer-text #flex-toggle-text-stacks_in_9545 {
      display: none; }
    #flex-stacks_in_9545 .flex-controls #flex-toggle-text-stacks_in_9545 {
      color: rgba(60, 85, 76, 1.00);
      font-size: 13px;
      cursor: pointer;
      font-weight: bold;
      margin-right: 10px;
      display: inline-block; }
      #flex-stacks_in_9545 .flex-controls #flex-toggle-text-stacks_in_9545::before {
        display: inline-block;
        content: 'sluit'; }
      #flex-stacks_in_9545 .flex-controls #flex-toggle-text-stacks_in_9545.off::before {
        content: 'toon alles'; }
    #flex-stacks_in_9545 .flex-controls #flex-toggle-stacks_in_9545 {
      width: 40px;
      height: 20px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      position: relative;
      background: rgba(85, 118, 88, 1.00);
      transition: background 1s ease; }
      #flex-stacks_in_9545 .flex-controls #flex-toggle-stacks_in_9545::before {
        content: 'ON';
        top: 50%;
        left: 50%;
        display: block;
        opacity: 0;
        font-size: 12px;
        color: rgba(85, 118, 88, 1.00);
        font-weight: bold;
        position: absolute;
        font-family: "Roboto";
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-animation-name: text-animation-off;
                animation-name: text-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_9545 .flex-controls #flex-toggle-stacks_in_9545 .flex-toggle-inner {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        width: 100%;
        border-radius: inherit;
        max-width: 40px;
        background: rgba(255, 255, 255, 1.00);
        transition: all 0.3s ease-out;
        -webkit-animation-name: toggle-animation-off;
                animation-name: toggle-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_9545 .flex-controls #flex-toggle-stacks_in_9545.off {
        background: rgba(101, 101, 101, 1.00); }
        #flex-stacks_in_9545 .flex-controls #flex-toggle-stacks_in_9545.off .flex-toggle-inner {
          -webkit-animation-name: toggle-animation-on;
                  animation-name: toggle-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
        #flex-stacks_in_9545 .flex-controls #flex-toggle-stacks_in_9545.off::before {
          content: 'OFF';
          color: rgba(101, 101, 101, 1.00);
          -webkit-animation-name: text-animation-on;
                  animation-name: text-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
  #flex-stacks_in_9545 .flex-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0px;
    overflow: hidden;
    list-style-type: none; }
    #flex-stacks_in_9545 .flex-grid-row {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 {
      box-sizing: border-box;
      transition: all 0.3s ease; }
      #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545 {
        height: 0;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease; }
        #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545 .flex-item-content-inner-stacks_in_9545 {
          /*  */
          font-family: "Fira Sans";
          /*  */
          z-index: 10;
          position: relative;
          padding: 10px 10px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545::before {
          z-index: 5;
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          position: absolute; }
      #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 {
        /*  */
        font-family: "Fira Sans";
        /*  */
        padding: 10px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        position: relative;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        transition: all 0.2s ease; }
        #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545:hover {
          /*  */
          padding: 20px 10px;
          box-sizing: border-box;
          transition: 0.3s ease;
          /*  */ }
          #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545:hover .header-toggle-icon {
            /*  */
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: 0.3s ease;
            /*  */ }
        #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon, #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title, #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
          z-index: 2; }
        #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
          font-size: 0px;
          margin-right: 20px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
          font-size: 20px;
          margin-left: auto;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
          font-size: 18px;
          line-height: 25.199999px;
          font-weight: bold;
          margin-right: 20px;
          letter-spacing: 1px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545::before {
          content: '';
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1; }
  #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545 {
    height: auto; }
  #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 {
    padding: 0px 10px; }
    #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545:hover {
      padding: 0px 10px; }
      #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545:hover .header-toggle-icon {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
      font-size: 18px; }
    #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon::before {
      content: '\f12a';
      transition: all 0.3s ease; }
    #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545::before {
      display: block; }

#flex-stacks_in_9545.layout-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#flex-stacks_in_9545.no-open-all-toggle .flex-controls {
  display: none; }

#flex-stacks_in_9545.uppercase-headers .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 {
  text-transform: uppercase; }

#flex-stacks_in_9545.shared-background .flex-grid-item-stacks_in_9545 {
  /*  */
  background: rgba(85, 118, 88, 1.00) !important;
  /*  */
  /*  */
  /*  */ }

#flex-stacks_in_9545.shared-header-overlay .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545::before {
  background: rgba(0, 0, 0, 0.00) !important; }

#flex-stacks_in_9545.header-hover-overlays .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545:hover::before {
  /*  */
  display: block;
  /*  */ }

#flex-stacks_in_9545.header-hover-overlays .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545:hover .header-title, #flex-stacks_in_9545.header-hover-overlays .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545:hover .header-toggle-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_9545.header-hover-overlays .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545:hover .header-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_9545.shared-title .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title, #flex-stacks_in_9545.shared-title .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
  color: rgba(60, 85, 76, 1.00) !important; }

#flex-stacks_in_9545.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title, #flex-stacks_in_9545.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9545.shared-icon .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9545.shared-icon .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9545.shared-content-text .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545 .flex-item-content-inner-stacks_in_9545 {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9545.shared-content-overlay .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545::before {
  background: rgba(255, 255, 255, 1.00) !important; }

@media (min-width: 480px) and (max-width: 768px) {
  #flex-stacks_in_9545 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@media (max-width: 480px) {
  #flex-stacks_in_9545 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_9545 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_9545 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@-webkit-keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@-webkit-keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@-webkit-keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
#flex-item-stacks_in_9548 .flex-grid-item-stacks_in_9545 {
  /*  */
  background: rgba(85, 118, 88, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9548 .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9548 .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545 .flex-item-content-inner-stacks_in_9545 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9548 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9548 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9548 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9548 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9548.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9548.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9548.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_9549 #stacks_in_9549printablestack
{
	color:#3C554C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_9549 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_9549 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_9549 #stacks_in_9549printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_9553 .flex-grid-item-stacks_in_9545 {
  /*  */
  background: rgba(85, 118, 88, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9553 .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9553 .flex-grid-item-stacks_in_9545 .flex-item-content-stacks_in_9545 .flex-item-content-inner-stacks_in_9545 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9553 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9553 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9553 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9553 .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9553.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9553.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9553.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9545 .flex-item-header-stacks_in_9545 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_9554 #stacks_in_9554printablestack
{
	color:#3C554C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_9554 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_9554 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_9554 #stacks_in_9554printbtn
{
	cursor:pointer;
}


/* Start Responsive Shim stack CSS code */.stacks_in_7902shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_7902shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_7902shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code *//*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_7903 {
	width: 100%;
	clear: both;
	padding-top: 25px;
	padding-bottom: 25px;
}
#simpleDivider_stacks_in_7903 .theDivider1,
#simpleDivider_stacks_in_7903 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_7903 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_7903.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_7903.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_7903 .theDivider2 {
	height: 1px;
}
#simpleDivider_stacks_in_7903.transparentOff .theDivider2 {
	background-color: #2E2E2E;
}
#simpleDivider_stacks_in_7903.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_7903.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_7903.bgImageOn .theDivider1 img {
	display: block;
}


/*  */
#flex-stacks_in_7913 {
  margin: 0 auto;
  max-width: 700px; }
  #flex-stacks_in_7913 .flex-controls {
    /*  */
    font-family: "Fira Sans";
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #flex-stacks_in_7913 .flex-controls.no-inner-text #flex-toggle-stacks_in_7913::before {
      display: none; }
    #flex-stacks_in_7913 .flex-controls.no-outer-text #flex-toggle-text-stacks_in_7913 {
      display: none; }
    #flex-stacks_in_7913 .flex-controls #flex-toggle-text-stacks_in_7913 {
      color: rgba(144, 60, 44, 1.00);
      font-size: 13px;
      cursor: pointer;
      font-weight: bold;
      margin-right: 10px;
      display: inline-block; }
      #flex-stacks_in_7913 .flex-controls #flex-toggle-text-stacks_in_7913::before {
        display: inline-block;
        content: 'sluit'; }
      #flex-stacks_in_7913 .flex-controls #flex-toggle-text-stacks_in_7913.off::before {
        content: 'toon alles'; }
    #flex-stacks_in_7913 .flex-controls #flex-toggle-stacks_in_7913 {
      width: 40px;
      height: 20px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      position: relative;
      background: rgba(234, 106, 82, 1.00);
      transition: background 1s ease; }
      #flex-stacks_in_7913 .flex-controls #flex-toggle-stacks_in_7913::before {
        content: 'ON';
        top: 50%;
        left: 50%;
        display: block;
        opacity: 0;
        font-size: 12px;
        color: rgba(234, 106, 82, 1.00);
        font-weight: bold;
        position: absolute;
        font-family: "Roboto";
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-animation-name: text-animation-off;
                animation-name: text-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_7913 .flex-controls #flex-toggle-stacks_in_7913 .flex-toggle-inner {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        width: 100%;
        border-radius: inherit;
        max-width: 40px;
        background: rgba(255, 255, 255, 1.00);
        transition: all 0.3s ease-out;
        -webkit-animation-name: toggle-animation-off;
                animation-name: toggle-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_7913 .flex-controls #flex-toggle-stacks_in_7913.off {
        background: rgba(144, 60, 44, 1.00); }
        #flex-stacks_in_7913 .flex-controls #flex-toggle-stacks_in_7913.off .flex-toggle-inner {
          -webkit-animation-name: toggle-animation-on;
                  animation-name: toggle-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
        #flex-stacks_in_7913 .flex-controls #flex-toggle-stacks_in_7913.off::before {
          content: 'OFF';
          color: rgba(144, 60, 44, 1.00);
          -webkit-animation-name: text-animation-on;
                  animation-name: text-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
  #flex-stacks_in_7913 .flex-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0px;
    overflow: hidden;
    list-style-type: none; }
    #flex-stacks_in_7913 .flex-grid-row {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 {
      box-sizing: border-box;
      transition: all 0.3s ease; }
      #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 {
        height: 0;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease; }
        #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 .flex-item-content-inner-stacks_in_7913 {
          /*  */
          font-family: "Fira Sans";
          /*  */
          z-index: 10;
          position: relative;
          padding: 10px 10px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913::before {
          z-index: 5;
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          position: absolute; }
      #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 {
        /*  */
        font-family: "Fira Sans";
        /*  */
        padding: 10px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        position: relative;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        transition: all 0.2s ease; }
        #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913:hover {
          /*  */
          padding: 25px 10px;
          box-sizing: border-box;
          transition: 0.3s ease;
          /*  */ }
          #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913:hover .header-toggle-icon {
            /*  */
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: 0.3s ease;
            /*  */ }
        #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon, #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title, #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
          z-index: 2; }
        #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
          font-size: 0px;
          margin-right: 20px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
          font-size: 20px;
          margin-left: auto;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
          font-size: 24px;
          line-height: 33.599998px;
          font-weight: bold;
          margin-right: 20px;
          letter-spacing: 1px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913::before {
          content: '';
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1; }
  #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 {
    height: auto; }
  #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 {
    padding: 10px 10px; }
    #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913:hover {
      padding: 10px 10px; }
      #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913:hover .header-toggle-icon {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
      font-size: 28px; }
    #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon::before {
      content: '\f12a';
      transition: all 0.3s ease; }
    #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913::before {
      display: block; }

#flex-stacks_in_7913.layout-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#flex-stacks_in_7913.no-open-all-toggle .flex-controls {
  display: none; }

#flex-stacks_in_7913.uppercase-headers .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 {
  text-transform: uppercase; }

#flex-stacks_in_7913.shared-background .flex-grid-item-stacks_in_7913 {
  /*  */
  background: rgba(144, 60, 44, 1.00) !important;
  /*  */
  /*  */
  /*  */ }

#flex-stacks_in_7913.shared-header-overlay .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913::before {
  background: rgba(0, 0, 0, 0.50) !important; }

#flex-stacks_in_7913.header-hover-overlays .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913:hover::before {
  /*  */
  display: block;
  /*  */ }

#flex-stacks_in_7913.header-hover-overlays .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913:hover .header-title, #flex-stacks_in_7913.header-hover-overlays .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913:hover .header-toggle-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_7913.header-hover-overlays .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913:hover .header-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_7913.shared-title .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title, #flex-stacks_in_7913.shared-title .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7913.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title, #flex-stacks_in_7913.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7913.shared-icon .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7913.shared-icon .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7913.shared-content-text .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 .flex-item-content-inner-stacks_in_7913 {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7913.shared-content-overlay .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913::before {
  background: rgba(0, 0, 0, 0.00) !important; }

@media (min-width: 480px) and (max-width: 768px) {
  #flex-stacks_in_7913 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
      font-size: 24px;
      line-height: 33.599998px; }
    #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
    font-size: 28px;
    line-height: 39.200001px; } }

@media (max-width: 480px) {
  #flex-stacks_in_7913 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
      font-size: 20px;
      line-height: 28.000000px; }
    #flex-stacks_in_7913 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_7913 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
    font-size: 24px;
    line-height: 33.599998px; } }

@-webkit-keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@-webkit-keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@-webkit-keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
#flex-item-stacks_in_8874 .flex-grid-item-stacks_in_7913 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_8874 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_8874 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 .flex-item-content-inner-stacks_in_7913 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8874 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_8874 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8874 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8874 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8874.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8874.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8874.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
  color: rgba(255, 255, 255, 1.00); }


#stacks_in_8909 {
	padding: 0px 20px 0px 20px;
}
/*  */
#flex-stacks_in_8875 {
  margin: 0 auto;
  max-width: 700px; }
  #flex-stacks_in_8875 .flex-controls {
    /*  */
    font-family: "Fira Sans";
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #flex-stacks_in_8875 .flex-controls.no-inner-text #flex-toggle-stacks_in_8875::before {
      display: none; }
    #flex-stacks_in_8875 .flex-controls.no-outer-text #flex-toggle-text-stacks_in_8875 {
      display: none; }
    #flex-stacks_in_8875 .flex-controls #flex-toggle-text-stacks_in_8875 {
      color: rgba(144, 60, 44, 1.00);
      font-size: 13px;
      cursor: pointer;
      font-weight: bold;
      margin-right: 10px;
      display: inline-block; }
      #flex-stacks_in_8875 .flex-controls #flex-toggle-text-stacks_in_8875::before {
        display: inline-block;
        content: 'sluit'; }
      #flex-stacks_in_8875 .flex-controls #flex-toggle-text-stacks_in_8875.off::before {
        content: 'toon alles'; }
    #flex-stacks_in_8875 .flex-controls #flex-toggle-stacks_in_8875 {
      width: 40px;
      height: 20px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      position: relative;
      background: rgba(144, 60, 44, 1.00);
      transition: background 1s ease; }
      #flex-stacks_in_8875 .flex-controls #flex-toggle-stacks_in_8875::before {
        content: 'ON';
        top: 50%;
        left: 50%;
        display: block;
        opacity: 0;
        font-size: 12px;
        color: rgba(144, 60, 44, 1.00);
        font-weight: bold;
        position: absolute;
        font-family: "Roboto";
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-animation-name: text-animation-off;
                animation-name: text-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_8875 .flex-controls #flex-toggle-stacks_in_8875 .flex-toggle-inner {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        width: 100%;
        border-radius: inherit;
        max-width: 40px;
        background: rgba(255, 255, 255, 1.00);
        transition: all 0.3s ease-out;
        -webkit-animation-name: toggle-animation-off;
                animation-name: toggle-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_8875 .flex-controls #flex-toggle-stacks_in_8875.off {
        background: rgba(101, 101, 101, 1.00); }
        #flex-stacks_in_8875 .flex-controls #flex-toggle-stacks_in_8875.off .flex-toggle-inner {
          -webkit-animation-name: toggle-animation-on;
                  animation-name: toggle-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
        #flex-stacks_in_8875 .flex-controls #flex-toggle-stacks_in_8875.off::before {
          content: 'OFF';
          color: rgba(101, 101, 101, 1.00);
          -webkit-animation-name: text-animation-on;
                  animation-name: text-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
  #flex-stacks_in_8875 .flex-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0px;
    overflow: hidden;
    list-style-type: none; }
    #flex-stacks_in_8875 .flex-grid-row {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 {
      box-sizing: border-box;
      transition: all 0.3s ease; }
      #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875 {
        height: 0;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease; }
        #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875 .flex-item-content-inner-stacks_in_8875 {
          /*  */
          font-family: "Fira Sans";
          /*  */
          z-index: 10;
          position: relative;
          padding: 10px 10px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875::before {
          z-index: 5;
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          position: absolute; }
      #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 {
        /*  */
        font-family: "Fira Sans";
        /*  */
        padding: 10px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        position: relative;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        transition: all 0.2s ease; }
        #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875:hover {
          /*  */
          padding: 20px 10px;
          box-sizing: border-box;
          transition: 0.3s ease;
          /*  */ }
          #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875:hover .header-toggle-icon {
            /*  */
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: 0.3s ease;
            /*  */ }
        #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon, #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title, #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
          z-index: 2; }
        #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
          font-size: 0px;
          margin-right: 20px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
          font-size: 20px;
          margin-left: auto;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
          font-size: 18px;
          line-height: 25.199999px;
          font-weight: bold;
          margin-right: 20px;
          letter-spacing: 1px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875::before {
          content: '';
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1; }
  #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875 {
    height: auto; }
  #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 {
    padding: 0px 10px; }
    #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875:hover {
      padding: 0px 10px; }
      #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875:hover .header-toggle-icon {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
      font-size: 18px; }
    #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon::before {
      content: '\f12a';
      transition: all 0.3s ease; }
    #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875::before {
      display: block; }

#flex-stacks_in_8875.layout-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#flex-stacks_in_8875.no-open-all-toggle .flex-controls {
  display: none; }

#flex-stacks_in_8875.uppercase-headers .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 {
  text-transform: uppercase; }

#flex-stacks_in_8875.shared-background .flex-grid-item-stacks_in_8875 {
  /*  */
  /*  */
  /*  */
  background: url() no-repeat center center !important;
  background-size: cover !important;
  /*  */ }

#flex-stacks_in_8875.shared-header-overlay .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875::before {
  background: rgba(0, 0, 0, 0.00) !important; }

#flex-stacks_in_8875.header-hover-overlays .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875:hover::before {
  /*  */
  display: block;
  /*  */ }

#flex-stacks_in_8875.header-hover-overlays .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875:hover .header-title, #flex-stacks_in_8875.header-hover-overlays .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875:hover .header-toggle-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_8875.header-hover-overlays .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875:hover .header-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_8875.shared-title .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title, #flex-stacks_in_8875.shared-title .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
  color: rgba(144, 60, 44, 1.00) !important; }

#flex-stacks_in_8875.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title, #flex-stacks_in_8875.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_8875.shared-icon .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_8875.shared-icon .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_8875.shared-content-text .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875 .flex-item-content-inner-stacks_in_8875 {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_8875.shared-content-overlay .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875::before {
  background: rgba(255, 255, 255, 1.00) !important; }

@media (min-width: 480px) and (max-width: 768px) {
  #flex-stacks_in_8875 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@media (max-width: 480px) {
  #flex-stacks_in_8875 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_8875 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_8875 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@-webkit-keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@-webkit-keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@-webkit-keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
#flex-item-stacks_in_8876 .flex-grid-item-stacks_in_8875 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_8876 .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_8876 .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875 .flex-item-content-inner-stacks_in_8875 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8876 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_8876 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8876 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8876 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8876.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8876.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8876.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_8877 #stacks_in_8877printablestack
{
	color:#903C2C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_8877 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_8877 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_8877 #stacks_in_8877printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_8882 .flex-grid-item-stacks_in_8875 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_8882 .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_8882 .flex-grid-item-stacks_in_8875 .flex-item-content-stacks_in_8875 .flex-item-content-inner-stacks_in_8875 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8882 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_8882 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8882 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8882 .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8882.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8882.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8882.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8875 .flex-item-header-stacks_in_8875 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_8883 #stacks_in_8883printablestack
{
	color:#903C2C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_8883 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_8883 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_8883 #stacks_in_8883printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_8891 .flex-grid-item-stacks_in_7913 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_8891 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_8891 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 .flex-item-content-inner-stacks_in_7913 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8891 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_8891 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8891 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8891 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8891.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8891.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8891.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
  color: rgba(255, 255, 255, 1.00); }


#stacks_in_8908 {
	padding: 0px 20px 0px 20px;
}
/*  */
#flex-stacks_in_8892 {
  margin: 0 auto;
  max-width: 700px; }
  #flex-stacks_in_8892 .flex-controls {
    /*  */
    font-family: "Fira Sans";
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #flex-stacks_in_8892 .flex-controls.no-inner-text #flex-toggle-stacks_in_8892::before {
      display: none; }
    #flex-stacks_in_8892 .flex-controls.no-outer-text #flex-toggle-text-stacks_in_8892 {
      display: none; }
    #flex-stacks_in_8892 .flex-controls #flex-toggle-text-stacks_in_8892 {
      color: rgba(144, 60, 44, 1.00);
      font-size: 13px;
      cursor: pointer;
      font-weight: bold;
      margin-right: 10px;
      display: inline-block; }
      #flex-stacks_in_8892 .flex-controls #flex-toggle-text-stacks_in_8892::before {
        display: inline-block;
        content: 'sluit'; }
      #flex-stacks_in_8892 .flex-controls #flex-toggle-text-stacks_in_8892.off::before {
        content: 'toon alles'; }
    #flex-stacks_in_8892 .flex-controls #flex-toggle-stacks_in_8892 {
      width: 40px;
      height: 20px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      position: relative;
      background: rgba(144, 60, 44, 1.00);
      transition: background 1s ease; }
      #flex-stacks_in_8892 .flex-controls #flex-toggle-stacks_in_8892::before {
        content: 'ON';
        top: 50%;
        left: 50%;
        display: block;
        opacity: 0;
        font-size: 12px;
        color: rgba(144, 60, 44, 1.00);
        font-weight: bold;
        position: absolute;
        font-family: "Roboto";
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-animation-name: text-animation-off;
                animation-name: text-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_8892 .flex-controls #flex-toggle-stacks_in_8892 .flex-toggle-inner {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        width: 100%;
        border-radius: inherit;
        max-width: 40px;
        background: rgba(255, 255, 255, 1.00);
        transition: all 0.3s ease-out;
        -webkit-animation-name: toggle-animation-off;
                animation-name: toggle-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_8892 .flex-controls #flex-toggle-stacks_in_8892.off {
        background: rgba(101, 101, 101, 1.00); }
        #flex-stacks_in_8892 .flex-controls #flex-toggle-stacks_in_8892.off .flex-toggle-inner {
          -webkit-animation-name: toggle-animation-on;
                  animation-name: toggle-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
        #flex-stacks_in_8892 .flex-controls #flex-toggle-stacks_in_8892.off::before {
          content: 'OFF';
          color: rgba(101, 101, 101, 1.00);
          -webkit-animation-name: text-animation-on;
                  animation-name: text-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
  #flex-stacks_in_8892 .flex-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0px;
    overflow: hidden;
    list-style-type: none; }
    #flex-stacks_in_8892 .flex-grid-row {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 {
      box-sizing: border-box;
      transition: all 0.3s ease; }
      #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892 {
        height: 0;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease; }
        #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892 .flex-item-content-inner-stacks_in_8892 {
          /*  */
          font-family: "Fira Sans";
          /*  */
          z-index: 10;
          position: relative;
          padding: 10px 10px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892::before {
          z-index: 5;
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          position: absolute; }
      #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 {
        /*  */
        font-family: "Fira Sans";
        /*  */
        padding: 10px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        position: relative;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        transition: all 0.2s ease; }
        #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892:hover {
          /*  */
          padding: 20px 10px;
          box-sizing: border-box;
          transition: 0.3s ease;
          /*  */ }
          #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892:hover .header-toggle-icon {
            /*  */
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: 0.3s ease;
            /*  */ }
        #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon, #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title, #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
          z-index: 2; }
        #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
          font-size: 0px;
          margin-right: 20px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
          font-size: 20px;
          margin-left: auto;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
          font-size: 18px;
          line-height: 25.199999px;
          font-weight: bold;
          margin-right: 20px;
          letter-spacing: 1px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892::before {
          content: '';
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1; }
  #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892 {
    height: auto; }
  #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 {
    padding: 0px 10px; }
    #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892:hover {
      padding: 0px 10px; }
      #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892:hover .header-toggle-icon {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
      font-size: 18px; }
    #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon::before {
      content: '\f12a';
      transition: all 0.3s ease; }
    #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892::before {
      display: block; }

#flex-stacks_in_8892.layout-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#flex-stacks_in_8892.no-open-all-toggle .flex-controls {
  display: none; }

#flex-stacks_in_8892.uppercase-headers .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 {
  text-transform: uppercase; }

#flex-stacks_in_8892.shared-background .flex-grid-item-stacks_in_8892 {
  /*  */
  /*  */
  /*  */
  background: url() no-repeat center center !important;
  background-size: cover !important;
  /*  */ }

#flex-stacks_in_8892.shared-header-overlay .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892::before {
  background: rgba(0, 0, 0, 0.00) !important; }

#flex-stacks_in_8892.header-hover-overlays .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892:hover::before {
  /*  */
  display: block;
  /*  */ }

#flex-stacks_in_8892.header-hover-overlays .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892:hover .header-title, #flex-stacks_in_8892.header-hover-overlays .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892:hover .header-toggle-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_8892.header-hover-overlays .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892:hover .header-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_8892.shared-title .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title, #flex-stacks_in_8892.shared-title .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
  color: rgba(144, 60, 44, 1.00) !important; }

#flex-stacks_in_8892.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title, #flex-stacks_in_8892.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_8892.shared-icon .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_8892.shared-icon .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_8892.shared-content-text .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892 .flex-item-content-inner-stacks_in_8892 {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_8892.shared-content-overlay .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892::before {
  background: rgba(255, 255, 255, 1.00) !important; }

@media (min-width: 480px) and (max-width: 768px) {
  #flex-stacks_in_8892 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@media (max-width: 480px) {
  #flex-stacks_in_8892 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_8892 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_8892 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@-webkit-keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@-webkit-keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@-webkit-keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
#flex-item-stacks_in_8893 .flex-grid-item-stacks_in_8892 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_8893 .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_8893 .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892 .flex-item-content-inner-stacks_in_8892 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8893 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_8893 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8893 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8893 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8893.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8893.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8893.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_8894 #stacks_in_8894printablestack
{
	color:#903C2C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_8894 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_8894 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_8894 #stacks_in_8894printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_8899 .flex-grid-item-stacks_in_8892 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_8899 .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_8899 .flex-grid-item-stacks_in_8892 .flex-item-content-stacks_in_8892 .flex-item-content-inner-stacks_in_8892 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8899 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_8899 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8899 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_8899 .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8899.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8899.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_8899.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_8892 .flex-item-header-stacks_in_8892 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_8900 #stacks_in_8900printablestack
{
	color:#903C2C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_8900 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_8900 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_8900 #stacks_in_8900printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_7932 .flex-grid-item-stacks_in_7913 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_7932 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_7932 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 .flex-item-content-inner-stacks_in_7913 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7932 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_7932 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7932 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7932 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7932.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7932.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7932.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
  color: rgba(255, 255, 255, 1.00); }


#stacks_in_7934 {
	padding: 0px 20px 0px 20px;
}
/*  */
#flex-stacks_in_7935 {
  margin: 0 auto;
  max-width: 700px; }
  #flex-stacks_in_7935 .flex-controls {
    /*  */
    font-family: "Fira Sans";
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #flex-stacks_in_7935 .flex-controls.no-inner-text #flex-toggle-stacks_in_7935::before {
      display: none; }
    #flex-stacks_in_7935 .flex-controls.no-outer-text #flex-toggle-text-stacks_in_7935 {
      display: none; }
    #flex-stacks_in_7935 .flex-controls #flex-toggle-text-stacks_in_7935 {
      color: rgba(144, 60, 44, 1.00);
      font-size: 13px;
      cursor: pointer;
      font-weight: bold;
      margin-right: 10px;
      display: inline-block; }
      #flex-stacks_in_7935 .flex-controls #flex-toggle-text-stacks_in_7935::before {
        display: inline-block;
        content: 'sluit'; }
      #flex-stacks_in_7935 .flex-controls #flex-toggle-text-stacks_in_7935.off::before {
        content: 'toon alles'; }
    #flex-stacks_in_7935 .flex-controls #flex-toggle-stacks_in_7935 {
      width: 40px;
      height: 20px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      position: relative;
      background: rgba(144, 60, 44, 1.00);
      transition: background 1s ease; }
      #flex-stacks_in_7935 .flex-controls #flex-toggle-stacks_in_7935::before {
        content: 'ON';
        top: 50%;
        left: 50%;
        display: block;
        opacity: 0;
        font-size: 12px;
        color: rgba(144, 60, 44, 1.00);
        font-weight: bold;
        position: absolute;
        font-family: "Roboto";
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-animation-name: text-animation-off;
                animation-name: text-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_7935 .flex-controls #flex-toggle-stacks_in_7935 .flex-toggle-inner {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        width: 100%;
        border-radius: inherit;
        max-width: 40px;
        background: rgba(255, 255, 255, 1.00);
        transition: all 0.3s ease-out;
        -webkit-animation-name: toggle-animation-off;
                animation-name: toggle-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_7935 .flex-controls #flex-toggle-stacks_in_7935.off {
        background: rgba(101, 101, 101, 1.00); }
        #flex-stacks_in_7935 .flex-controls #flex-toggle-stacks_in_7935.off .flex-toggle-inner {
          -webkit-animation-name: toggle-animation-on;
                  animation-name: toggle-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
        #flex-stacks_in_7935 .flex-controls #flex-toggle-stacks_in_7935.off::before {
          content: 'OFF';
          color: rgba(101, 101, 101, 1.00);
          -webkit-animation-name: text-animation-on;
                  animation-name: text-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
  #flex-stacks_in_7935 .flex-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0px;
    overflow: hidden;
    list-style-type: none; }
    #flex-stacks_in_7935 .flex-grid-row {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 {
      box-sizing: border-box;
      transition: all 0.3s ease; }
      #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935 {
        height: 0;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease; }
        #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935 .flex-item-content-inner-stacks_in_7935 {
          /*  */
          font-family: "Fira Sans";
          /*  */
          z-index: 10;
          position: relative;
          padding: 10px 10px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935::before {
          z-index: 5;
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          position: absolute; }
      #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 {
        /*  */
        font-family: "Fira Sans";
        /*  */
        padding: 10px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        position: relative;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        transition: all 0.2s ease; }
        #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935:hover {
          /*  */
          padding: 20px 10px;
          box-sizing: border-box;
          transition: 0.3s ease;
          /*  */ }
          #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935:hover .header-toggle-icon {
            /*  */
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: 0.3s ease;
            /*  */ }
        #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon, #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title, #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
          z-index: 2; }
        #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
          font-size: 0px;
          margin-right: 20px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
          font-size: 20px;
          margin-left: auto;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
          font-size: 18px;
          line-height: 25.199999px;
          font-weight: bold;
          margin-right: 20px;
          letter-spacing: 1px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935::before {
          content: '';
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1; }
  #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935 {
    height: auto; }
  #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 {
    padding: 0px 10px; }
    #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935:hover {
      padding: 0px 10px; }
      #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935:hover .header-toggle-icon {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
      font-size: 18px; }
    #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon::before {
      content: '\f12a';
      transition: all 0.3s ease; }
    #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935::before {
      display: block; }

#flex-stacks_in_7935.layout-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#flex-stacks_in_7935.no-open-all-toggle .flex-controls {
  display: none; }

#flex-stacks_in_7935.uppercase-headers .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 {
  text-transform: uppercase; }

#flex-stacks_in_7935.shared-background .flex-grid-item-stacks_in_7935 {
  /*  */
  /*  */
  /*  */
  background: url() no-repeat center center !important;
  background-size: cover !important;
  /*  */ }

#flex-stacks_in_7935.shared-header-overlay .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935::before {
  background: rgba(0, 0, 0, 0.00) !important; }

#flex-stacks_in_7935.header-hover-overlays .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935:hover::before {
  /*  */
  display: block;
  /*  */ }

#flex-stacks_in_7935.header-hover-overlays .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935:hover .header-title, #flex-stacks_in_7935.header-hover-overlays .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935:hover .header-toggle-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_7935.header-hover-overlays .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935:hover .header-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_7935.shared-title .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title, #flex-stacks_in_7935.shared-title .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
  color: rgba(144, 60, 44, 1.00) !important; }

#flex-stacks_in_7935.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title, #flex-stacks_in_7935.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7935.shared-icon .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7935.shared-icon .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7935.shared-content-text .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935 .flex-item-content-inner-stacks_in_7935 {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_7935.shared-content-overlay .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935::before {
  background: rgba(255, 255, 255, 1.00) !important; }

@media (min-width: 480px) and (max-width: 768px) {
  #flex-stacks_in_7935 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@media (max-width: 480px) {
  #flex-stacks_in_7935 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_7935 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_7935 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@-webkit-keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@-webkit-keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@-webkit-keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
#flex-item-stacks_in_7937 .flex-grid-item-stacks_in_7935 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_7937 .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_7937 .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935 .flex-item-content-inner-stacks_in_7935 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7937 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_7937 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7937 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7937 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7937.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7937.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7937.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_7939 #stacks_in_7939printablestack
{
	color:#903C2C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_7939 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_7939 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_7939 #stacks_in_7939printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_7943 .flex-grid-item-stacks_in_7935 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_7943 .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_7943 .flex-grid-item-stacks_in_7935 .flex-item-content-stacks_in_7935 .flex-item-content-inner-stacks_in_7935 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7943 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_7943 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7943 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_7943 .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7943.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7943.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_7943.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7935 .flex-item-header-stacks_in_7935 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_7945 #stacks_in_7945printablestack
{
	color:#903C2C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_7945 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_7945 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_7945 #stacks_in_7945printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_9562 .flex-grid-item-stacks_in_7913 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9562 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9562 .flex-grid-item-stacks_in_7913 .flex-item-content-stacks_in_7913 .flex-item-content-inner-stacks_in_7913 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9562 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9562 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9562 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9562 .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9562.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9562.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9562.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_7913 .flex-item-header-stacks_in_7913 .header-title {
  color: rgba(255, 255, 255, 1.00); }


#stacks_in_9563 {
	padding: 0px 20px 0px 20px;
}
/*  */
#flex-stacks_in_9567 {
  margin: 0 auto;
  max-width: 700px; }
  #flex-stacks_in_9567 .flex-controls {
    /*  */
    font-family: "Fira Sans";
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #flex-stacks_in_9567 .flex-controls.no-inner-text #flex-toggle-stacks_in_9567::before {
      display: none; }
    #flex-stacks_in_9567 .flex-controls.no-outer-text #flex-toggle-text-stacks_in_9567 {
      display: none; }
    #flex-stacks_in_9567 .flex-controls #flex-toggle-text-stacks_in_9567 {
      color: rgba(144, 60, 44, 1.00);
      font-size: 13px;
      cursor: pointer;
      font-weight: bold;
      margin-right: 10px;
      display: inline-block; }
      #flex-stacks_in_9567 .flex-controls #flex-toggle-text-stacks_in_9567::before {
        display: inline-block;
        content: 'sluit'; }
      #flex-stacks_in_9567 .flex-controls #flex-toggle-text-stacks_in_9567.off::before {
        content: 'toon alles'; }
    #flex-stacks_in_9567 .flex-controls #flex-toggle-stacks_in_9567 {
      width: 40px;
      height: 20px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      position: relative;
      background: rgba(144, 60, 44, 1.00);
      transition: background 1s ease; }
      #flex-stacks_in_9567 .flex-controls #flex-toggle-stacks_in_9567::before {
        content: 'ON';
        top: 50%;
        left: 50%;
        display: block;
        opacity: 0;
        font-size: 12px;
        color: rgba(144, 60, 44, 1.00);
        font-weight: bold;
        position: absolute;
        font-family: "Roboto";
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-animation-name: text-animation-off;
                animation-name: text-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_9567 .flex-controls #flex-toggle-stacks_in_9567 .flex-toggle-inner {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        width: 100%;
        border-radius: inherit;
        max-width: 40px;
        background: rgba(255, 255, 255, 1.00);
        transition: all 0.3s ease-out;
        -webkit-animation-name: toggle-animation-off;
                animation-name: toggle-animation-off;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
                animation-duration: 1s; }
      #flex-stacks_in_9567 .flex-controls #flex-toggle-stacks_in_9567.off {
        background: rgba(101, 101, 101, 1.00); }
        #flex-stacks_in_9567 .flex-controls #flex-toggle-stacks_in_9567.off .flex-toggle-inner {
          -webkit-animation-name: toggle-animation-on;
                  animation-name: toggle-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
        #flex-stacks_in_9567 .flex-controls #flex-toggle-stacks_in_9567.off::before {
          content: 'OFF';
          color: rgba(101, 101, 101, 1.00);
          -webkit-animation-name: text-animation-on;
                  animation-name: text-animation-on;
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-duration: 1s;
                  animation-duration: 1s; }
  #flex-stacks_in_9567 .flex-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0px;
    overflow: hidden;
    list-style-type: none; }
    #flex-stacks_in_9567 .flex-grid-row {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 {
      box-sizing: border-box;
      transition: all 0.3s ease; }
      #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567 {
        height: 0;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease; }
        #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567 .flex-item-content-inner-stacks_in_9567 {
          /*  */
          font-family: "Fira Sans";
          /*  */
          z-index: 10;
          position: relative;
          padding: 10px 10px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567::before {
          z-index: 5;
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          position: absolute; }
      #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 {
        /*  */
        font-family: "Fira Sans";
        /*  */
        padding: 10px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        position: relative;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        transition: all 0.2s ease; }
        #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567:hover {
          /*  */
          padding: 20px 10px;
          box-sizing: border-box;
          transition: 0.3s ease;
          /*  */ }
          #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567:hover .header-toggle-icon {
            /*  */
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: 0.3s ease;
            /*  */ }
        #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon, #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title, #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
          z-index: 2; }
        #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
          font-size: 0px;
          margin-right: 20px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
          font-size: 20px;
          margin-left: auto;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
          font-size: 18px;
          line-height: 25.199999px;
          font-weight: bold;
          margin-right: 20px;
          letter-spacing: 1px;
          box-sizing: border-box;
          transition: all 0.3s ease; }
        #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567::before {
          content: '';
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1; }
  #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567 {
    height: auto; }
  #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 {
    padding: 0px 10px; }
    #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567:hover {
      padding: 0px 10px; }
      #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567:hover .header-toggle-icon {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
      font-size: 18px; }
    #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon::before {
      content: '\f12a';
      transition: all 0.3s ease; }
    #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567::before {
      display: block; }

#flex-stacks_in_9567.layout-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#flex-stacks_in_9567.no-open-all-toggle .flex-controls {
  display: none; }

#flex-stacks_in_9567.uppercase-headers .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 {
  text-transform: uppercase; }

#flex-stacks_in_9567.shared-background .flex-grid-item-stacks_in_9567 {
  /*  */
  /*  */
  /*  */
  background: url() no-repeat center center !important;
  background-size: cover !important;
  /*  */ }

#flex-stacks_in_9567.shared-header-overlay .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567::before {
  background: rgba(0, 0, 0, 0.00) !important; }

#flex-stacks_in_9567.header-hover-overlays .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567:hover::before {
  /*  */
  display: block;
  /*  */ }

#flex-stacks_in_9567.header-hover-overlays .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567:hover .header-title, #flex-stacks_in_9567.header-hover-overlays .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567:hover .header-toggle-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_9567.header-hover-overlays .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567:hover .header-icon {
  /*  */
  color: rgba(255, 255, 255, 1.00) !important;
  /*  */ }

#flex-stacks_in_9567.shared-title .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title, #flex-stacks_in_9567.shared-title .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
  color: rgba(144, 60, 44, 1.00) !important; }

#flex-stacks_in_9567.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title, #flex-stacks_in_9567.shared-title .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9567.shared-icon .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9567.shared-icon .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9567.shared-content-text .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567 .flex-item-content-inner-stacks_in_9567 {
  color: rgba(255, 255, 255, 1.00) !important; }

#flex-stacks_in_9567.shared-content-overlay .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567::before {
  background: rgba(255, 255, 255, 1.00) !important; }

@media (min-width: 480px) and (max-width: 768px) {
  #flex-stacks_in_9567 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@media (max-width: 480px) {
  #flex-stacks_in_9567 .flex-grid {
    border-radius: 0px; }
    #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
      font-size: 0px; }
    #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
      font-size: 18px;
      line-height: 25.199999px; }
    #flex-stacks_in_9567 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
      font-size: 20px; }
  #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
    font-size: 0px; }
  #flex-stacks_in_9567 .flex-grid .flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
    font-size: 18px;
    line-height: 25.199999px; } }

@-webkit-keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@keyframes toggle-animation-on {
  0% {
    max-width: 50%;
    margin-left: 50%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 0%; } }

@-webkit-keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@keyframes toggle-animation-off {
  0% {
    max-width: 50%;
    margin-left: 0%; }
  25% {
    max-width: 100%;
    margin-left: 0%; }
  50% {
    max-width: 100%;
    margin-left: 0%; }
  75% {
    max-width: 100%;
    margin-left: 0%; }
  100% {
    max-width: 50%;
    margin-left: 50%; } }

@-webkit-keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-off {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes text-animation-on {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
#flex-item-stacks_in_9568 .flex-grid-item-stacks_in_9567 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9568 .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9568 .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567 .flex-item-content-inner-stacks_in_9567 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9568 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9568 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9568 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9568 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9568.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9568.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9568.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_9569 #stacks_in_9569printablestack
{
	color:#903C2C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_9569 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_9569 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_9569 #stacks_in_9569printbtn
{
	cursor:pointer;
}


#flex-item-stacks_in_9573 .flex-grid-item-stacks_in_9567 {
  /*  */
  background: rgba(144, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #flex-item-stacks_in_9573 .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567 {
    background: rgba(0, 0, 0, 0.00); }
    #flex-item-stacks_in_9573 .flex-grid-item-stacks_in_9567 .flex-item-content-stacks_in_9567 .flex-item-content-inner-stacks_in_9567 {
      color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9573 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567::before {
    background: rgba(0, 0, 0, 0.20); }
  #flex-item-stacks_in_9573 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9573 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
    color: rgba(255, 255, 255, 1.00); }
  #flex-item-stacks_in_9573 .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
    color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9573.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9573.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-toggle-icon {
  color: rgba(255, 255, 255, 1.00); }

#flex-item-stacks_in_9573.flex-grid-row.flex-item-opened .flex-grid-item-stacks_in_9567 .flex-item-header-stacks_in_9567 .header-title {
  color: rgba(255, 255, 255, 1.00); }
#stacks_in_9574 #stacks_in_9574printablestack
{
	color:#903C2C;
	padding:10px 10px 50px 10px;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	
}

#stacks_in_9574 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_9574 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_9574 #stacks_in_9574printbtn
{
	cursor:pointer;
}


/* Start Responsive Shim stack CSS code */.stacks_in_7950shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_7950shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_7950shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7951shim{	padding-top: 50px;}@media all and (max-width: 768px) {.stacks_in_7951shim{	padding-top: 35px;}}@media all and (max-width: 480px) {.stacks_in_7951shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7952shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_7952shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_7952shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_7952 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_7955shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_7956shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */


#stacks_in_7966 {
	margin: 10px 0px 10px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9584shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9584shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_9584shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code *//*  */
#exp-grid-stacks_in_7972 {
  margin: 0 auto;
  max-width: 1200px; }
  #exp-grid-stacks_in_7972 .exp-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    box-sizing: border-box;
    padding: 1px; }
    #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item {
      display: -ms-flexbox;
      display: flex;
      padding: 0 1px;
      -ms-flex-direction: column;
          flex-direction: column;
      box-sizing: border-box;
      transition: opacity 0.3s; }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20 {
        width: calc(100% / 20); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+19) .exp-grid-item-content {
          margin-left: calc((18 * -100%) - (1px * (2 * (19 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20:nth-child(20n+20) .exp-grid-item-content {
          margin-left: calc((19 * -100%) - (1px * (2 * (20 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-20 .exp-grid-item-content {
          width: calc((100% * 20) + (1px  * (2 * (20 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19 {
        width: calc(100% / 19); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19:nth-child(19n+19) .exp-grid-item-content {
          margin-left: calc((18 * -100%) - (1px * (2 * (19 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-19 .exp-grid-item-content {
          width: calc((100% * 19) + (1px  * (2 * (19 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18 {
        width: calc(100% / 18); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18:nth-child(18n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-18 .exp-grid-item-content {
          width: calc((100% * 18) + (1px  * (2 * (18 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17 {
        width: calc(100% / 17); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17:nth-child(17n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-17 .exp-grid-item-content {
          width: calc((100% * 17) + (1px  * (2 * (17 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16 {
        width: calc(100% / 16); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16:nth-child(16n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-16 .exp-grid-item-content {
          width: calc((100% * 16) + (1px  * (2 * (16 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15 {
        width: calc(100% / 15); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15:nth-child(15n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-15 .exp-grid-item-content {
          width: calc((100% * 15) + (1px  * (2 * (15 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14 {
        width: calc(100% / 14); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14:nth-child(14n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-14 .exp-grid-item-content {
          width: calc((100% * 14) + (1px  * (2 * (14 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13 {
        width: calc(100% / 13); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13:nth-child(13n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-13 .exp-grid-item-content {
          width: calc((100% * 13) + (1px  * (2 * (13 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12 {
        width: calc(100% / 12); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12:nth-child(12n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-12 .exp-grid-item-content {
          width: calc((100% * 12) + (1px  * (2 * (12 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11 {
        width: calc(100% / 11); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11:nth-child(11n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-11 .exp-grid-item-content {
          width: calc((100% * 11) + (1px  * (2 * (11 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10 {
        width: calc(100% / 10); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10:nth-child(10n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-10 .exp-grid-item-content {
          width: calc((100% * 10) + (1px  * (2 * (10 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9 {
        width: calc(100% / 9); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9:nth-child(9n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9:nth-child(9n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9:nth-child(9n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9:nth-child(9n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9:nth-child(9n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9:nth-child(9n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9:nth-child(9n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9:nth-child(9n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-9 .exp-grid-item-content {
          width: calc((100% * 9) + (1px  * (2 * (9 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8 {
        width: calc(100% / 8); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8:nth-child(8n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8:nth-child(8n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8:nth-child(8n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8:nth-child(8n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8:nth-child(8n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8:nth-child(8n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8:nth-child(8n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-8 .exp-grid-item-content {
          width: calc((100% * 8) + (1px  * (2 * (8 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-7 {
        width: calc(100% / 7); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-7:nth-child(7n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-7:nth-child(7n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-7:nth-child(7n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-7:nth-child(7n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-7:nth-child(7n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-7:nth-child(7n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-7 .exp-grid-item-content {
          width: calc((100% * 7) + (1px  * (2 * (7 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-6 {
        width: calc(100% / 6); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-6:nth-child(6n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-6:nth-child(6n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-6:nth-child(6n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-6:nth-child(6n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-6:nth-child(6n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-6 .exp-grid-item-content {
          width: calc((100% * 6) + (1px  * (2 * (6 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-5 {
        width: calc(100% / 5); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-5:nth-child(5n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-5:nth-child(5n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-5:nth-child(5n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-5:nth-child(5n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-5 .exp-grid-item-content {
          width: calc((100% * 5) + (1px  * (2 * (5 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-4 {
        width: calc(100% / 4); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-4:nth-child(4n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-4:nth-child(4n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-4:nth-child(4n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-4 .exp-grid-item-content {
          width: calc((100% * 4) + (1px  * (2 * (4 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-3 {
        width: calc(100% / 3); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-3:nth-child(3n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-3:nth-child(3n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-3 .exp-grid-item-content {
          width: calc((100% * 3) + (1px  * (2 * (3 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-2 {
        width: calc(100% / 2); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-2:nth-child(2n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-2 .exp-grid-item-content {
          width: calc((100% * 2) + (1px  * (2 * (2 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-1 {
        width: calc(100% / 1); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item.cols-1 .exp-grid-item-content {
          width: calc((100% * 1) + (1px  * (2 * (1 - 1)))); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header {
        /*  */
        font-family: "Fira Sans";
        /*  */
        /*  */
        background: rgba(46, 46, 46, 1.00);
        /*  */
        /*  */
        /*  */
        margin: 1px 0;
        padding: 15px 0px;
        border-radius: 0px;
        min-height: 150px;
        opacity: 0;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        overflow: hidden;
        position: relative;
        -ms-flex-direction: column;
            flex-direction: column;
        box-sizing: border-box;
        transition: all 0.3s ease;
        animation: item-in 0.3s 0.3s;
        animation-fill-mode: forwards; }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header::before {
          /*  */ }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header:hover {
          z-index: 3;
          transform: translateY(0.00px) scale(1.00);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header::before {
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1;
          display: none;
          position: absolute;
          background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
          z-index: 2;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          -ms-flex-pack: center;
              justify-content: center;
          color: rgba(255, 255, 255, 1.00);
          width: 50px;
          height: 50px;
          font-size: 45px;
          background: rgba(255, 255, 255, 0.00);
          border-radius: 25px;
          margin-bottom: 10px; }
          #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header .header-icon i {
            line-height: 0;
            font-size: inherit; }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header .header-title {
          z-index: 2;
          color: rgba(255, 255, 255, 1.00);
          font-size: 21px;
          font-weight: normal;
          line-height: calc(21px * 1.4); }
      #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content {
        /*  */
        font-family: "Fira Sans";
        /*  */
        background: rgba(46, 46, 46, 1.00);
        height: 0;
        box-sizing: border-box;
        overflow: hidden !important;
        transition: all 0.3s, width 0s;
        border-radius: 0px;
        width: calc((100% * 1px) + (1px  * (2 * (1px - 1)))); }
        #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner {
          margin: 0 auto;
          box-sizing: border-box;
          padding: 0px 0px;
          max-width: 2000px;
          color: rgba(255, 255, 255, 0.60); }
          #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h1, #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h2, #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h3, #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h4, #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h5, #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h6 {
            color: rgba(255, 255, 255, 1.00); }
          #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner a, #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner a:visited {
            color: rgba(255, 255, 255, 1.00); }

#exp-grid-stacks_in_7972.active-item .exp-grid .exp-grid-item {
  opacity: 0.35;
  pointer-events: none; }
  #exp-grid-stacks_in_7972.active-item .exp-grid .exp-grid-item.active {
    opacity: 1;
    pointer-events: auto; }
    #exp-grid-stacks_in_7972.active-item .exp-grid .exp-grid-item.active .exp-grid-item-header:hover {
      transform: none; }
    #exp-grid-stacks_in_7972.active-item .exp-grid .exp-grid-item.active .exp-grid-item-content {
      margin-top: 1px;
      margin-bottom: 1px; }

#exp-grid-stacks_in_7972.items-v-top .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-stacks_in_7972.items-v-center .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-stacks_in_7972.items-v-bottom .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-stacks_in_7972.items-h-left .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-stacks_in_7972.items-h-center .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-stacks_in_7972.items-h-right .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }

#exp-grid-stacks_in_7972.hide-icons .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-stacks_in_7972.hide-titles .exp-grid .exp-grid-item .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-stacks_in_7972.hide-titles .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-stacks_in_7972.items-inner-shadow .exp-grid .exp-grid-item .exp-grid-item-header {
  box-shadow: inset 0 -50px 30px rgba(0, 0, 0, 0.6); }

#exp-grid-stacks_in_7972.force-overflow .exp-grid .exp-grid-item .exp-grid-item-content .stacks_in, #exp-grid-stacks_in_7972.force-overflow .exp-grid .exp-grid-item .exp-grid-item-content .stacks_out {
  /*  */
  overflow: visible !important;
  /*  */ }

@media (min-width: 401px) and (max-width: 700px) {
  #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header {
    min-height: 150px; } }

@media (min-width: 701px) {
  #exp-grid-stacks_in_7972 .exp-grid .exp-grid-item .exp-grid-item-header {
    min-height: 200px; } }

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

@keyframes item-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.35; } }

#stacks_in_7972 {
	background-color: rgba(46, 46, 46, 1.00);
	margin: 15px 0px 20px 0px;
}
/*  */
#exp-grid-item-stacks_in_7974.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_7974.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_7974.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_7974.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(46, 46, 46, 1.00); }
  #exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_7974.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  /*  */
  background: url(../files/main_bg_image_choice-7974.png) no-repeat center center;
  background-size: cover;
  overflow-y: hidden;
  /*  */ }
  #exp-grid-item-stacks_in_7974.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */
    display: block !important;
    /*  */ }
  #exp-grid-item-stacks_in_7974.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.00)) !important; }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_7974.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_7976 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_7976 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_7976 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_7976 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_7976 .vm-header-icon i {
        /*  */
        background: rgba(144, 60, 44, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_7976 .vm-header-title, #view-more-stacks_in_7976 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_7976 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_7976 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(234, 106, 82, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_7976 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_7976 .vm-footer-actions a, #view-more-stacks_in_7976 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(144, 60, 44, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_7976 .vm-footer-actions a:hover, #view-more-stacks_in_7976 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_7976 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_7976 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_7976 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_7976 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_7976 .vm-content h1, #view-more-stacks_in_7976 .vm-content h2, #view-more-stacks_in_7976 .vm-content h3, #view-more-stacks_in_7976 .vm-content h4, #view-more-stacks_in_7976 .vm-content h5, #view-more-stacks_in_7976 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_7976 .vm-content a {
      color: rgba(234, 106, 82, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_7976 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_7976 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_7976 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_7976.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_7976.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_7976.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_7976.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_7976.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_7976.expanded .vm-header-title, #view-more-stacks_in_7976.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_7976.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_7976.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_7976.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_7976.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_7976.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_7976.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_7978 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_7978,
#printBoxFooterstacks_in_7978 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_7978 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_7978 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_7978 #printerContent,
.printstacks_in_7978 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_7978 #printBoxHeaderstacks_in_7978,
.printstacks_in_7978 #printBoxFooterstacks_in_7978 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_7978 * {
		display: none !important;
	}
	
	.printstacks_in_7978 #printerContent,
	.printstacks_in_7978 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_7978.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_7978 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_7980 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9585shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9585shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9585shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9586shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9586shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9586shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code */
#stacks_in_7988 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_7989shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_7989shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_7989shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code */
/* Start Responsive Shim stack CSS code */.stacks_in_9587shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9587shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9587shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9588shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9588shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9588shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8001shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8001shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8001shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9590shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9590shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9590shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9591shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9591shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9591shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9592shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_9592shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_9592shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */#stacks_in_8036 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_8036 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_8036 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8036 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8036 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_8036{overflow:hidden;margin:0;padding:0}#totem_stacks_in_8036 li{overflow:hidden;display:block;border-bottom:1px solid #2E2E2E}#totem_prev_stacks_in_8036{bottom:-0px}#totem_next_stacks_in_8036{top:-0px}#totem_stacks_in_8036 li{height:240px}








/*  */
#exp-grid-item-stacks_in_8061.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8061.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8061.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8061.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(46, 46, 46, 1.00); }
  #exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8061.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(101, 101, 101, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_8061.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_8061.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8061.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#exp-grid-item-stacks_in_8152.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8152.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8152.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8152.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(46, 46, 46, 1.00); }
  #exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8152.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  /*  */
  background: url(../files/main_bg_image_choice-8152.png) no-repeat center center;
  background-size: cover;
  overflow-y: hidden;
  /*  */ }
  #exp-grid-item-stacks_in_8152.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */
    display: block !important;
    /*  */ }
  #exp-grid-item-stacks_in_8152.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.00)) !important; }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8152.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_8154 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_8154 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8154 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8154 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8154 .vm-header-icon i {
        /*  */
        background: rgba(144, 60, 44, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_8154 .vm-header-title, #view-more-stacks_in_8154 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_8154 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_8154 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(234, 106, 82, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_8154 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_8154 .vm-footer-actions a, #view-more-stacks_in_8154 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(144, 60, 44, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_8154 .vm-footer-actions a:hover, #view-more-stacks_in_8154 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_8154 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_8154 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_8154 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_8154 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_8154 .vm-content h1, #view-more-stacks_in_8154 .vm-content h2, #view-more-stacks_in_8154 .vm-content h3, #view-more-stacks_in_8154 .vm-content h4, #view-more-stacks_in_8154 .vm-content h5, #view-more-stacks_in_8154 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_8154 .vm-content a {
      color: rgba(234, 106, 82, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_8154 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_8154 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_8154 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_8154.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_8154.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8154.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8154.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8154.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_8154.expanded .vm-header-title, #view-more-stacks_in_8154.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8154.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_8154.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_8154.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_8154.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_8154.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_8154.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_8156 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_8156,
#printBoxFooterstacks_in_8156 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_8156 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_8156 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_8156 #printerContent,
.printstacks_in_8156 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_8156 #printBoxHeaderstacks_in_8156,
.printstacks_in_8156 #printBoxFooterstacks_in_8156 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_8156 * {
		display: none !important;
	}
	
	.printstacks_in_8156 #printerContent,
	.printstacks_in_8156 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_8156.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_8156 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_8158 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9601shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9601shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9601shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9602shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9602shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9602shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8165shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8165shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8165shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//*
    _____  __     _____  _____  _____ 
   | __  ||  |   |     ||     ||     |
   | __ -||  |__ |  |  ||  |  || | | |
   |_____||_____||_____||_____||_|_|_|
                                   
    Version 1.0.1

*/







#stacks_in_8166 img {
  max-width: 100%;
  height: auto; }


#stacks_in_8166 .cd-slider-wrapper ol, 
#stacks_in_8166 .cd-slider-wrapper ul,
#stacks_in_8166 .cd-slider-wrapper li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

#stacks_in_8166 * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#stacks_in_8166 img {
  max-width: 100%; 
  
  border-radius: 0px;
  
}

/* -------------------------------- 

Main Components 

-------------------------------- */


#stacks_in_8166 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

#stacks_in_8166 .cd-single-item {
  position: relative;
 }

#stacks_in_8166 .cd-slider-wrapper {
  position: relative;
  z-index: 1;
  -webkit-transition: width 0.4s;
  -moz-transition: width 0.4s;
  transition: width 0.4s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: width; } 
  @media only screen and (min-width: 1024px) {
    #stacks_in_8166 .cd-slider-wrapper {
      width: 50%; 
      
    }
      #stacks_in_8166 .cd-slider-active .cd-slider-wrapper {
        width: 100%; } }

#stacks_in_8166 .cd-slider {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  #stacks_in_8166 .cd-slider::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none; }
  #stacks_in_8166 .cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s; }
    #stacks_in_8166 .cd-slider li img {
      display: block;
      width: 100%; }
    #stacks_in_8166 .cd-slider li.selected {
      position: relative;
      z-index: 2;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); }
    #stacks_in_8166 .cd-slider li.move-left {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8166 .cd-slider {
      cursor: pointer; }
      #stacks_in_8166 .cd-slider::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop'; }
      #stacks_in_8166 .cd-slider::after {
        /* slider cover layer - to indicate the image is clickable */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* OVERLAY COLORS */
        background: rgba(81, 62, 93, 0.4) url("../files/bloom_images/cd-icon-zoom-white.svg") no-repeat center center;
        /* size of the icon */
        background-size: 48px;
        
        opacity: 0.6;
        
        z-index: 4;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      #stacks_in_8166 .cd-slider:hover::after {
        opacity: 1; }
      #stacks_in_8166 .cd-slider-active .cd-slider {
        cursor: auto; }
        #stacks_in_8166 .cd-slider-active .cd-slider::after {
          display: none; } }

@media only screen and (min-width: 1024px) {
  #stacks_in_8166 .cd-slider-navigation li, #stacks_in_8166 .cd-slider-pagination {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s; }
    #stacks_in_8166 .cd-slider-active .cd-slider-navigation li, #stacks_in_8166 .cd-slider-active .cd-slider-pagination {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      transition: opacity 0.4s 0.4s, visibility 0s 0.4s; } }
#stacks_in_8166 .cd-slider-navigation li {
  position: absolute;
  z-index: 2;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  #stacks_in_8166 .cd-slider-navigation li:first-of-type {
    left: 10px; }
  #stacks_in_8166 .cd-slider-navigation li:last-of-type {
    right: 10px; }
  #stacks_in_8166 .cd-slider-navigation li a {
    display: block;
    width: 48px;
    height: 48px;
    background: url("../files/bloom_images/cd-icon-arrow-white.svg") no-repeat center center;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }
    #stacks_in_8166 .cd-slider-navigation li a.inactive {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      transition: opacity 0.2s 0s, visibility 0s 0.2s; }
    #stacks_in_8166 .cd-slider-navigation li a:hover {
      opacity: .7; }
  #stacks_in_8166 .cd-slider-navigation li:first-of-type a {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8166 .cd-slider-navigation li:first-child {
      left: 30px; }
    #stacks_in_8166 .cd-slider-navigation li:last-child {
      right: 30px; } }

#stacks_in_8166 .cd-slider-pagination {
  /* you won't see this element in the html but it will be created using jQuery */
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden; }
  #stacks_in_8166 .cd-slider-pagination:after {
    content: "";
    display: table;
    clear: both; }
  #stacks_in_8166 .touch .cd-slider-pagination {
    visibility: hidden; }
  #stacks_in_8166 .cd-slider-pagination li {
    display: inline-block;
    float: left;
    margin: 0 5px !important; }
    #stacks_in_8166 .cd-slider-pagination li.selected a {
     
      background: #f5f4f3;
           }
  #stacks_in_8166 .cd-slider-pagination a {
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
     
    border: 1px solid #f5f4f3;
    /* fix a bug in IE9/10 - transparent anchor not clickable */
    background-color: rgba(255, 255, 255, 0);
    
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }

#stacks_in_8166 .cd-slider-wrapper .cd-close {
  display: none;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: url("../files/bloom_images/cd-icon-close-white.svg") no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.4s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.4s;
  transition: transform 0.3s 0s, visibility 0s 0.4s; }
  #stacks_in_8166 .cd-slider-active .cd-slider-wrapper .cd-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s; }
  #stacks_in_8166 .cd-slider-active .cd-slider-wrapper .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8166 .cd-slider-wrapper .cd-close {
      display: block; } }

#stacks_in_8166 .cd-item-info {
  padding: 0; }

  @media only screen and (min-width: 1024px) {
    #stacks_in_8166 .cd-item-info {
      position: absolute;
      width: 50%;
      top: 0;
      padding: 0;
      margin: 0;
      
      right: 0; 
      padding-left: 30px; 
      
 } }

#stacks_in_8166 .cd-content p {
  width: 90%;
  max-width: 1024px;
  padding: 4em 0;
  margin: 0 auto;
  color: #afa8a0;
  line-height: 1.8; }






#stacks_in_8166 {
	margin: 20px 0px 25px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8168shim{	padding-top: 30px;}@media all and (max-width: 768px) {.stacks_in_8168shim{	padding-top: 30px;}}@media all and (max-width: 414px) {.stacks_in_8168shim{	padding-top: 30px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8170 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9603shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9603shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_9603shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */#uTubestacks_in_8176 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8176 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





/* Start Responsive Shim stack CSS code */.stacks_in_8182shim{	padding-top: 5px;}@media all and (max-width: 768px) {.stacks_in_8182shim{	padding-top: 5px;}}@media all and (max-width: 414px) {.stacks_in_8182shim{	padding-top: 5px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9604shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9604shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9604shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9605shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9605shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9605shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9606shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_9606shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_9606shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */#stacks_in_8201 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_8201 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_8201 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8201 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8201 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_8201{overflow:hidden;margin:0;padding:0}#totem_stacks_in_8201 li{overflow:hidden;display:block;border-bottom:1px solid #2E2E2E}#totem_prev_stacks_in_8201{bottom:-0px}#totem_next_stacks_in_8201{top:-0px}#totem_stacks_in_8201 li{height:240px}








/*  */
#exp-grid-item-stacks_in_8064.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8064.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8064.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8064.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(46, 46, 46, 1.00); }
  #exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8064.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  /*  */
  background: url(../files/main_bg_image_choice-8064.png) no-repeat center center;
  background-size: cover;
  overflow-y: hidden;
  /*  */ }
  #exp-grid-item-stacks_in_8064.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */
    display: block !important;
    /*  */ }
  #exp-grid-item-stacks_in_8064.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(23, 23, 23, 0.00), rgba(23, 23, 23, 0.00)) !important; }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8064.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_8066 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_8066 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8066 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8066 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8066 .vm-header-icon i {
        /*  */
        background: rgba(144, 60, 44, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_8066 .vm-header-title, #view-more-stacks_in_8066 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_8066 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_8066 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(234, 106, 82, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_8066 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_8066 .vm-footer-actions a, #view-more-stacks_in_8066 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(144, 60, 44, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_8066 .vm-footer-actions a:hover, #view-more-stacks_in_8066 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_8066 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_8066 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_8066 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_8066 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_8066 .vm-content h1, #view-more-stacks_in_8066 .vm-content h2, #view-more-stacks_in_8066 .vm-content h3, #view-more-stacks_in_8066 .vm-content h4, #view-more-stacks_in_8066 .vm-content h5, #view-more-stacks_in_8066 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_8066 .vm-content a {
      color: rgba(234, 106, 82, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_8066 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_8066 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_8066 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_8066.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_8066.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8066.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8066.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8066.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_8066.expanded .vm-header-title, #view-more-stacks_in_8066.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8066.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_8066.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_8066.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_8066.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_8066.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_8066.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_8068 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_8068,
#printBoxFooterstacks_in_8068 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_8068 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_8068 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_8068 #printerContent,
.printstacks_in_8068 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_8068 #printBoxHeaderstacks_in_8068,
.printstacks_in_8068 #printBoxFooterstacks_in_8068 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_8068 * {
		display: none !important;
	}
	
	.printstacks_in_8068 #printerContent,
	.printstacks_in_8068 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_8068.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_8068 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_8070 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9607shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9607shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9607shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9608shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9608shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9608shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8081shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8081shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8081shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//*
    _____  __     _____  _____  _____ 
   | __  ||  |   |     ||     ||     |
   | __ -||  |__ |  |  ||  |  || | | |
   |_____||_____||_____||_____||_|_|_|
                                   
    Version 1.0.1

*/







#stacks_in_8082 img {
  max-width: 100%;
  height: auto; }


#stacks_in_8082 .cd-slider-wrapper ol, 
#stacks_in_8082 .cd-slider-wrapper ul,
#stacks_in_8082 .cd-slider-wrapper li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

#stacks_in_8082 * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#stacks_in_8082 img {
  max-width: 100%; 
  
  border-radius: 0px;
  
}

/* -------------------------------- 

Main Components 

-------------------------------- */


#stacks_in_8082 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

#stacks_in_8082 .cd-single-item {
  position: relative;
 }

#stacks_in_8082 .cd-slider-wrapper {
  position: relative;
  z-index: 1;
  -webkit-transition: width 0.4s;
  -moz-transition: width 0.4s;
  transition: width 0.4s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: width; } 
  @media only screen and (min-width: 1024px) {
    #stacks_in_8082 .cd-slider-wrapper {
      width: 50%; 
      
    }
      #stacks_in_8082 .cd-slider-active .cd-slider-wrapper {
        width: 100%; } }

#stacks_in_8082 .cd-slider {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  #stacks_in_8082 .cd-slider::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none; }
  #stacks_in_8082 .cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s; }
    #stacks_in_8082 .cd-slider li img {
      display: block;
      width: 100%; }
    #stacks_in_8082 .cd-slider li.selected {
      position: relative;
      z-index: 2;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); }
    #stacks_in_8082 .cd-slider li.move-left {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8082 .cd-slider {
      cursor: pointer; }
      #stacks_in_8082 .cd-slider::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop'; }
      #stacks_in_8082 .cd-slider::after {
        /* slider cover layer - to indicate the image is clickable */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* OVERLAY COLORS */
        background: rgba(81, 62, 93, 0.4) url("../files/bloom_images/cd-icon-zoom-white.svg") no-repeat center center;
        /* size of the icon */
        background-size: 48px;
        
        opacity: 0.6;
        
        z-index: 4;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      #stacks_in_8082 .cd-slider:hover::after {
        opacity: 1; }
      #stacks_in_8082 .cd-slider-active .cd-slider {
        cursor: auto; }
        #stacks_in_8082 .cd-slider-active .cd-slider::after {
          display: none; } }

@media only screen and (min-width: 1024px) {
  #stacks_in_8082 .cd-slider-navigation li, #stacks_in_8082 .cd-slider-pagination {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s; }
    #stacks_in_8082 .cd-slider-active .cd-slider-navigation li, #stacks_in_8082 .cd-slider-active .cd-slider-pagination {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      transition: opacity 0.4s 0.4s, visibility 0s 0.4s; } }
#stacks_in_8082 .cd-slider-navigation li {
  position: absolute;
  z-index: 2;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  #stacks_in_8082 .cd-slider-navigation li:first-of-type {
    left: 10px; }
  #stacks_in_8082 .cd-slider-navigation li:last-of-type {
    right: 10px; }
  #stacks_in_8082 .cd-slider-navigation li a {
    display: block;
    width: 48px;
    height: 48px;
    background: url("../files/bloom_images/cd-icon-arrow-white.svg") no-repeat center center;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }
    #stacks_in_8082 .cd-slider-navigation li a.inactive {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      transition: opacity 0.2s 0s, visibility 0s 0.2s; }
    #stacks_in_8082 .cd-slider-navigation li a:hover {
      opacity: .7; }
  #stacks_in_8082 .cd-slider-navigation li:first-of-type a {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8082 .cd-slider-navigation li:first-child {
      left: 30px; }
    #stacks_in_8082 .cd-slider-navigation li:last-child {
      right: 30px; } }

#stacks_in_8082 .cd-slider-pagination {
  /* you won't see this element in the html but it will be created using jQuery */
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden; }
  #stacks_in_8082 .cd-slider-pagination:after {
    content: "";
    display: table;
    clear: both; }
  #stacks_in_8082 .touch .cd-slider-pagination {
    visibility: hidden; }
  #stacks_in_8082 .cd-slider-pagination li {
    display: inline-block;
    float: left;
    margin: 0 5px !important; }
    #stacks_in_8082 .cd-slider-pagination li.selected a {
     
      background: #f5f4f3;
           }
  #stacks_in_8082 .cd-slider-pagination a {
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
     
    border: 1px solid #f5f4f3;
    /* fix a bug in IE9/10 - transparent anchor not clickable */
    background-color: rgba(255, 255, 255, 0);
    
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }

#stacks_in_8082 .cd-slider-wrapper .cd-close {
  display: none;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: url("../files/bloom_images/cd-icon-close-white.svg") no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.4s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.4s;
  transition: transform 0.3s 0s, visibility 0s 0.4s; }
  #stacks_in_8082 .cd-slider-active .cd-slider-wrapper .cd-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s; }
  #stacks_in_8082 .cd-slider-active .cd-slider-wrapper .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8082 .cd-slider-wrapper .cd-close {
      display: block; } }

#stacks_in_8082 .cd-item-info {
  padding: 0; }

  @media only screen and (min-width: 1024px) {
    #stacks_in_8082 .cd-item-info {
      position: absolute;
      width: 50%;
      top: 0;
      padding: 0;
      margin: 0;
      
      right: 0; 
      padding-left: 30px; 
      
 } }

#stacks_in_8082 .cd-content p {
  width: 90%;
  max-width: 1024px;
  padding: 4em 0;
  margin: 0 auto;
  color: #afa8a0;
  line-height: 1.8; }






#stacks_in_8082 {
	margin: 20px 0px 25px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8084shim{	padding-top: 30px;}@media all and (max-width: 768px) {.stacks_in_8084shim{	padding-top: 30px;}}@media all and (max-width: 414px) {.stacks_in_8084shim{	padding-top: 30px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8086 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#uTubestacks_in_8859 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8859 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





/* Start Responsive Shim stack CSS code */.stacks_in_8868shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_8868shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8868shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8864shim{	padding-top: 5px;}@media all and (max-width: 768px) {.stacks_in_8864shim{	padding-top: 5px;}}@media all and (max-width: 414px) {.stacks_in_8864shim{	padding-top: 5px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8867shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_8867shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_8867shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8107shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_8107shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_8107shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */
/* Start Responsive Shim stack CSS code */.stacks_in_8118shim{	padding-top: 170px;}@media all and (max-width: 768px) {.stacks_in_8118shim{	padding-top: 140px;}}@media all and (max-width: 414px) {.stacks_in_8118shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9609shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9609shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9609shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9610shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_9610shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_9610shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */#stacks_in_8127 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_8127 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_8127 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8127 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8127 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_8127{overflow:hidden;margin:0;padding:0}#totem_stacks_in_8127 li{overflow:hidden;display:block;border-bottom:1px solid #2E2E2E}#totem_prev_stacks_in_8127{bottom:-0px}#totem_next_stacks_in_8127{top:-0px}#totem_stacks_in_8127 li{height:240px}








/*  */
#exp-grid-item-stacks_in_8226.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8226.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8226.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8226.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(46, 46, 46, 1.00); }
  #exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8226.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  /*  */
  background: url(../files/main_bg_image_choice-8226.png) no-repeat center center;
  background-size: cover;
  overflow-y: hidden;
  /*  */ }
  #exp-grid-item-stacks_in_8226.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */
    display: block !important;
    /*  */ }
  #exp-grid-item-stacks_in_8226.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8226.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_8228 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_8228 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8228 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8228 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8228 .vm-header-icon i {
        /*  */
        background: rgba(144, 60, 44, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_8228 .vm-header-title, #view-more-stacks_in_8228 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_8228 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_8228 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(234, 106, 82, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_8228 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_8228 .vm-footer-actions a, #view-more-stacks_in_8228 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(144, 60, 44, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_8228 .vm-footer-actions a:hover, #view-more-stacks_in_8228 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_8228 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_8228 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_8228 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_8228 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_8228 .vm-content h1, #view-more-stacks_in_8228 .vm-content h2, #view-more-stacks_in_8228 .vm-content h3, #view-more-stacks_in_8228 .vm-content h4, #view-more-stacks_in_8228 .vm-content h5, #view-more-stacks_in_8228 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_8228 .vm-content a {
      color: rgba(234, 106, 82, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_8228 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_8228 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_8228 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_8228.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_8228.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8228.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8228.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8228.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_8228.expanded .vm-header-title, #view-more-stacks_in_8228.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8228.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_8228.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_8228.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_8228.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_8228.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_8228.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_8230 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_8230,
#printBoxFooterstacks_in_8230 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_8230 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_8230 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_8230 #printerContent,
.printstacks_in_8230 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_8230 #printBoxHeaderstacks_in_8230,
.printstacks_in_8230 #printBoxFooterstacks_in_8230 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_8230 * {
		display: none !important;
	}
	
	.printstacks_in_8230 #printerContent,
	.printstacks_in_8230 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_8230.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_8230 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_8232 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9611shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9611shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9611shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9612shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9612shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9612shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8239shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8239shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8239shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//*
    _____  __     _____  _____  _____ 
   | __  ||  |   |     ||     ||     |
   | __ -||  |__ |  |  ||  |  || | | |
   |_____||_____||_____||_____||_|_|_|
                                   
    Version 1.0.1

*/







#stacks_in_8240 img {
  max-width: 100%;
  height: auto; }


#stacks_in_8240 .cd-slider-wrapper ol, 
#stacks_in_8240 .cd-slider-wrapper ul,
#stacks_in_8240 .cd-slider-wrapper li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

#stacks_in_8240 * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#stacks_in_8240 img {
  max-width: 100%; 
  
  border-radius: 0px;
  
}

/* -------------------------------- 

Main Components 

-------------------------------- */


#stacks_in_8240 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

#stacks_in_8240 .cd-single-item {
  position: relative;
 }

#stacks_in_8240 .cd-slider-wrapper {
  position: relative;
  z-index: 1;
  -webkit-transition: width 0.4s;
  -moz-transition: width 0.4s;
  transition: width 0.4s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: width; } 
  @media only screen and (min-width: 1024px) {
    #stacks_in_8240 .cd-slider-wrapper {
      width: 50%; 
      
    }
      #stacks_in_8240 .cd-slider-active .cd-slider-wrapper {
        width: 100%; } }

#stacks_in_8240 .cd-slider {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  #stacks_in_8240 .cd-slider::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none; }
  #stacks_in_8240 .cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s; }
    #stacks_in_8240 .cd-slider li img {
      display: block;
      width: 100%; }
    #stacks_in_8240 .cd-slider li.selected {
      position: relative;
      z-index: 2;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); }
    #stacks_in_8240 .cd-slider li.move-left {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8240 .cd-slider {
      cursor: pointer; }
      #stacks_in_8240 .cd-slider::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop'; }
      #stacks_in_8240 .cd-slider::after {
        /* slider cover layer - to indicate the image is clickable */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* OVERLAY COLORS */
        background: rgba(81, 62, 93, 0.4) url("../files/bloom_images/cd-icon-zoom-white.svg") no-repeat center center;
        /* size of the icon */
        background-size: 48px;
        
        opacity: 0.6;
        
        z-index: 4;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      #stacks_in_8240 .cd-slider:hover::after {
        opacity: 1; }
      #stacks_in_8240 .cd-slider-active .cd-slider {
        cursor: auto; }
        #stacks_in_8240 .cd-slider-active .cd-slider::after {
          display: none; } }

@media only screen and (min-width: 1024px) {
  #stacks_in_8240 .cd-slider-navigation li, #stacks_in_8240 .cd-slider-pagination {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s; }
    #stacks_in_8240 .cd-slider-active .cd-slider-navigation li, #stacks_in_8240 .cd-slider-active .cd-slider-pagination {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      transition: opacity 0.4s 0.4s, visibility 0s 0.4s; } }
#stacks_in_8240 .cd-slider-navigation li {
  position: absolute;
  z-index: 2;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  #stacks_in_8240 .cd-slider-navigation li:first-of-type {
    left: 10px; }
  #stacks_in_8240 .cd-slider-navigation li:last-of-type {
    right: 10px; }
  #stacks_in_8240 .cd-slider-navigation li a {
    display: block;
    width: 48px;
    height: 48px;
    background: url("../files/bloom_images/cd-icon-arrow-white.svg") no-repeat center center;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }
    #stacks_in_8240 .cd-slider-navigation li a.inactive {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      transition: opacity 0.2s 0s, visibility 0s 0.2s; }
    #stacks_in_8240 .cd-slider-navigation li a:hover {
      opacity: .7; }
  #stacks_in_8240 .cd-slider-navigation li:first-of-type a {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8240 .cd-slider-navigation li:first-child {
      left: 30px; }
    #stacks_in_8240 .cd-slider-navigation li:last-child {
      right: 30px; } }

#stacks_in_8240 .cd-slider-pagination {
  /* you won't see this element in the html but it will be created using jQuery */
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden; }
  #stacks_in_8240 .cd-slider-pagination:after {
    content: "";
    display: table;
    clear: both; }
  #stacks_in_8240 .touch .cd-slider-pagination {
    visibility: hidden; }
  #stacks_in_8240 .cd-slider-pagination li {
    display: inline-block;
    float: left;
    margin: 0 5px !important; }
    #stacks_in_8240 .cd-slider-pagination li.selected a {
     
      background: #f5f4f3;
           }
  #stacks_in_8240 .cd-slider-pagination a {
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
     
    border: 1px solid #f5f4f3;
    /* fix a bug in IE9/10 - transparent anchor not clickable */
    background-color: rgba(255, 255, 255, 0);
    
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }

#stacks_in_8240 .cd-slider-wrapper .cd-close {
  display: none;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: url("../files/bloom_images/cd-icon-close-white.svg") no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.4s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.4s;
  transition: transform 0.3s 0s, visibility 0s 0.4s; }
  #stacks_in_8240 .cd-slider-active .cd-slider-wrapper .cd-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s; }
  #stacks_in_8240 .cd-slider-active .cd-slider-wrapper .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8240 .cd-slider-wrapper .cd-close {
      display: block; } }

#stacks_in_8240 .cd-item-info {
  padding: 0; }

  @media only screen and (min-width: 1024px) {
    #stacks_in_8240 .cd-item-info {
      position: absolute;
      width: 50%;
      top: 0;
      padding: 0;
      margin: 0;
      
      right: 0; 
      padding-left: 30px; 
      
 } }

#stacks_in_8240 .cd-content p {
  width: 90%;
  max-width: 1024px;
  padding: 4em 0;
  margin: 0 auto;
  color: #afa8a0;
  line-height: 1.8; }






#stacks_in_8240 {
	margin: 20px 0px 25px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8242shim{	padding-top: 30px;}@media all and (max-width: 768px) {.stacks_in_8242shim{	padding-top: 30px;}}@media all and (max-width: 414px) {.stacks_in_8242shim{	padding-top: 30px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8244 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9613shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9613shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_9613shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */#uTubestacks_in_8250 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8250 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





/* Start Responsive Shim stack CSS code */.stacks_in_8256shim{	padding-top: 5px;}@media all and (max-width: 768px) {.stacks_in_8256shim{	padding-top: 5px;}}@media all and (max-width: 414px) {.stacks_in_8256shim{	padding-top: 5px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9614shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9614shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9614shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9615shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9615shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9615shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9616shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_9616shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_9616shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */#stacks_in_8288 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_8288 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_8288 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8288 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8288 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_8288{overflow:hidden;margin:0;padding:0}#totem_stacks_in_8288 li{overflow:hidden;display:block;border-bottom:1px solid #2E2E2E}#totem_prev_stacks_in_8288{bottom:-0px}#totem_next_stacks_in_8288{top:-0px}#totem_stacks_in_8288 li{height:240px}








/*  */
#exp-grid-item-stacks_in_8313.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8313.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8313.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8313.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(46, 46, 46, 1.00); }
  #exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8313.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  /*  */
  background: url(../files/main_bg_image_choice-8313.png) no-repeat center center;
  background-size: cover;
  overflow-y: hidden;
  /*  */ }
  #exp-grid-item-stacks_in_8313.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */
    display: block !important;
    /*  */ }
  #exp-grid-item-stacks_in_8313.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8313.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_8315 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_8315 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8315 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8315 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8315 .vm-header-icon i {
        /*  */
        background: rgba(144, 60, 44, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_8315 .vm-header-title, #view-more-stacks_in_8315 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_8315 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_8315 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(234, 106, 82, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_8315 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_8315 .vm-footer-actions a, #view-more-stacks_in_8315 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(144, 60, 44, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_8315 .vm-footer-actions a:hover, #view-more-stacks_in_8315 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_8315 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_8315 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_8315 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_8315 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_8315 .vm-content h1, #view-more-stacks_in_8315 .vm-content h2, #view-more-stacks_in_8315 .vm-content h3, #view-more-stacks_in_8315 .vm-content h4, #view-more-stacks_in_8315 .vm-content h5, #view-more-stacks_in_8315 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_8315 .vm-content a {
      color: rgba(234, 106, 82, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_8315 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_8315 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_8315 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_8315.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_8315.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8315.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8315.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8315.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_8315.expanded .vm-header-title, #view-more-stacks_in_8315.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8315.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_8315.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_8315.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_8315.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_8315.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_8315.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_8317 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_8317,
#printBoxFooterstacks_in_8317 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_8317 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_8317 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_8317 #printerContent,
.printstacks_in_8317 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_8317 #printBoxHeaderstacks_in_8317,
.printstacks_in_8317 #printBoxFooterstacks_in_8317 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_8317 * {
		display: none !important;
	}
	
	.printstacks_in_8317 #printerContent,
	.printstacks_in_8317 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_8317.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_8317 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_8319 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9617shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9617shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9617shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9618shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9618shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9618shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8326shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8326shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8326shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//*
    _____  __     _____  _____  _____ 
   | __  ||  |   |     ||     ||     |
   | __ -||  |__ |  |  ||  |  || | | |
   |_____||_____||_____||_____||_|_|_|
                                   
    Version 1.0.1

*/







#stacks_in_8327 img {
  max-width: 100%;
  height: auto; }


#stacks_in_8327 .cd-slider-wrapper ol, 
#stacks_in_8327 .cd-slider-wrapper ul,
#stacks_in_8327 .cd-slider-wrapper li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

#stacks_in_8327 * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#stacks_in_8327 img {
  max-width: 100%; 
  
  border-radius: 0px;
  
}

/* -------------------------------- 

Main Components 

-------------------------------- */


#stacks_in_8327 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

#stacks_in_8327 .cd-single-item {
  position: relative;
 }

#stacks_in_8327 .cd-slider-wrapper {
  position: relative;
  z-index: 1;
  -webkit-transition: width 0.4s;
  -moz-transition: width 0.4s;
  transition: width 0.4s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: width; } 
  @media only screen and (min-width: 1024px) {
    #stacks_in_8327 .cd-slider-wrapper {
      width: 50%; 
      
    }
      #stacks_in_8327 .cd-slider-active .cd-slider-wrapper {
        width: 100%; } }

#stacks_in_8327 .cd-slider {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  #stacks_in_8327 .cd-slider::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none; }
  #stacks_in_8327 .cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s; }
    #stacks_in_8327 .cd-slider li img {
      display: block;
      width: 100%; }
    #stacks_in_8327 .cd-slider li.selected {
      position: relative;
      z-index: 2;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); }
    #stacks_in_8327 .cd-slider li.move-left {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8327 .cd-slider {
      cursor: pointer; }
      #stacks_in_8327 .cd-slider::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop'; }
      #stacks_in_8327 .cd-slider::after {
        /* slider cover layer - to indicate the image is clickable */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* OVERLAY COLORS */
        background: rgba(81, 62, 93, 0.4) url("../files/bloom_images/cd-icon-zoom-white.svg") no-repeat center center;
        /* size of the icon */
        background-size: 48px;
        
        opacity: 0.6;
        
        z-index: 4;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      #stacks_in_8327 .cd-slider:hover::after {
        opacity: 1; }
      #stacks_in_8327 .cd-slider-active .cd-slider {
        cursor: auto; }
        #stacks_in_8327 .cd-slider-active .cd-slider::after {
          display: none; } }

@media only screen and (min-width: 1024px) {
  #stacks_in_8327 .cd-slider-navigation li, #stacks_in_8327 .cd-slider-pagination {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s; }
    #stacks_in_8327 .cd-slider-active .cd-slider-navigation li, #stacks_in_8327 .cd-slider-active .cd-slider-pagination {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      transition: opacity 0.4s 0.4s, visibility 0s 0.4s; } }
#stacks_in_8327 .cd-slider-navigation li {
  position: absolute;
  z-index: 2;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  #stacks_in_8327 .cd-slider-navigation li:first-of-type {
    left: 10px; }
  #stacks_in_8327 .cd-slider-navigation li:last-of-type {
    right: 10px; }
  #stacks_in_8327 .cd-slider-navigation li a {
    display: block;
    width: 48px;
    height: 48px;
    background: url("../files/bloom_images/cd-icon-arrow-white.svg") no-repeat center center;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }
    #stacks_in_8327 .cd-slider-navigation li a.inactive {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      transition: opacity 0.2s 0s, visibility 0s 0.2s; }
    #stacks_in_8327 .cd-slider-navigation li a:hover {
      opacity: .7; }
  #stacks_in_8327 .cd-slider-navigation li:first-of-type a {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8327 .cd-slider-navigation li:first-child {
      left: 30px; }
    #stacks_in_8327 .cd-slider-navigation li:last-child {
      right: 30px; } }

#stacks_in_8327 .cd-slider-pagination {
  /* you won't see this element in the html but it will be created using jQuery */
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden; }
  #stacks_in_8327 .cd-slider-pagination:after {
    content: "";
    display: table;
    clear: both; }
  #stacks_in_8327 .touch .cd-slider-pagination {
    visibility: hidden; }
  #stacks_in_8327 .cd-slider-pagination li {
    display: inline-block;
    float: left;
    margin: 0 5px !important; }
    #stacks_in_8327 .cd-slider-pagination li.selected a {
     
      background: #f5f4f3;
           }
  #stacks_in_8327 .cd-slider-pagination a {
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
     
    border: 1px solid #f5f4f3;
    /* fix a bug in IE9/10 - transparent anchor not clickable */
    background-color: rgba(255, 255, 255, 0);
    
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }

#stacks_in_8327 .cd-slider-wrapper .cd-close {
  display: none;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: url("../files/bloom_images/cd-icon-close-white.svg") no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.4s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.4s;
  transition: transform 0.3s 0s, visibility 0s 0.4s; }
  #stacks_in_8327 .cd-slider-active .cd-slider-wrapper .cd-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s; }
  #stacks_in_8327 .cd-slider-active .cd-slider-wrapper .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8327 .cd-slider-wrapper .cd-close {
      display: block; } }

#stacks_in_8327 .cd-item-info {
  padding: 0; }

  @media only screen and (min-width: 1024px) {
    #stacks_in_8327 .cd-item-info {
      position: absolute;
      width: 50%;
      top: 0;
      padding: 0;
      margin: 0;
      
      right: 0; 
      padding-left: 30px; 
      
 } }

#stacks_in_8327 .cd-content p {
  width: 90%;
  max-width: 1024px;
  padding: 4em 0;
  margin: 0 auto;
  color: #afa8a0;
  line-height: 1.8; }






#stacks_in_8327 {
	margin: 20px 0px 25px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8329shim{	padding-top: 30px;}@media all and (max-width: 768px) {.stacks_in_8329shim{	padding-top: 30px;}}@media all and (max-width: 414px) {.stacks_in_8329shim{	padding-top: 30px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8331 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9619shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9619shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_9619shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */#uTubestacks_in_8337 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8337 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





/* Start Responsive Shim stack CSS code */.stacks_in_8343shim{	padding-top: 5px;}@media all and (max-width: 768px) {.stacks_in_8343shim{	padding-top: 5px;}}@media all and (max-width: 414px) {.stacks_in_8343shim{	padding-top: 5px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9620shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9620shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9620shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9621shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9621shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9621shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9622shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_9622shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_9622shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */#stacks_in_8362 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_8362 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_8362 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8362 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8362 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_8362{overflow:hidden;margin:0;padding:0}#totem_stacks_in_8362 li{overflow:hidden;display:block;border-bottom:1px solid #2E2E2E}#totem_prev_stacks_in_8362{bottom:-0px}#totem_next_stacks_in_8362{top:-0px}#totem_stacks_in_8362 li{height:240px}








/*  */
#exp-grid-item-stacks_in_8387.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8387.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8387.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8387.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(46, 46, 46, 1.00); }
  #exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8387.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(101, 101, 101, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_8387.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_8387.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8387.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#exp-grid-item-stacks_in_8390.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8390.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8390.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8390.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(46, 46, 46, 1.00); }
  #exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8390.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(143, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_8390.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_8390.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8390.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_8392 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_8392 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8392 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8392 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8392 .vm-header-icon i {
        /*  */
        background: rgba(144, 60, 44, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_8392 .vm-header-title, #view-more-stacks_in_8392 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_8392 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_8392 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(234, 106, 82, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_8392 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_8392 .vm-footer-actions a, #view-more-stacks_in_8392 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(144, 60, 44, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_8392 .vm-footer-actions a:hover, #view-more-stacks_in_8392 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_8392 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_8392 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_8392 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_8392 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_8392 .vm-content h1, #view-more-stacks_in_8392 .vm-content h2, #view-more-stacks_in_8392 .vm-content h3, #view-more-stacks_in_8392 .vm-content h4, #view-more-stacks_in_8392 .vm-content h5, #view-more-stacks_in_8392 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_8392 .vm-content a {
      color: rgba(234, 106, 82, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_8392 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_8392 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_8392 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_8392.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_8392.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8392.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8392.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8392.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_8392.expanded .vm-header-title, #view-more-stacks_in_8392.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8392.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_8392.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_8392.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_8392.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_8392.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_8392.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_8394 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_8394,
#printBoxFooterstacks_in_8394 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_8394 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_8394 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_8394 #printerContent,
.printstacks_in_8394 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_8394 #printBoxHeaderstacks_in_8394,
.printstacks_in_8394 #printBoxFooterstacks_in_8394 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_8394 * {
		display: none !important;
	}
	
	.printstacks_in_8394 #printerContent,
	.printstacks_in_8394 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_8394.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_8394 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_8396 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9623shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9623shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9623shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9624shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9624shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9624shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8405shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8405shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8405shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//*
    _____  __     _____  _____  _____ 
   | __  ||  |   |     ||     ||     |
   | __ -||  |__ |  |  ||  |  || | | |
   |_____||_____||_____||_____||_|_|_|
                                   
    Version 1.0.1

*/







#stacks_in_8406 img {
  max-width: 100%;
  height: auto; }


#stacks_in_8406 .cd-slider-wrapper ol, 
#stacks_in_8406 .cd-slider-wrapper ul,
#stacks_in_8406 .cd-slider-wrapper li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

#stacks_in_8406 * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#stacks_in_8406 img {
  max-width: 100%; 
  
  border-radius: 0px;
  
}

/* -------------------------------- 

Main Components 

-------------------------------- */


#stacks_in_8406 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

#stacks_in_8406 .cd-single-item {
  position: relative;
 }

#stacks_in_8406 .cd-slider-wrapper {
  position: relative;
  z-index: 1;
  -webkit-transition: width 0.4s;
  -moz-transition: width 0.4s;
  transition: width 0.4s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: width; } 
  @media only screen and (min-width: 1024px) {
    #stacks_in_8406 .cd-slider-wrapper {
      width: 50%; 
      
    }
      #stacks_in_8406 .cd-slider-active .cd-slider-wrapper {
        width: 100%; } }

#stacks_in_8406 .cd-slider {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  #stacks_in_8406 .cd-slider::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none; }
  #stacks_in_8406 .cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s; }
    #stacks_in_8406 .cd-slider li img {
      display: block;
      width: 100%; }
    #stacks_in_8406 .cd-slider li.selected {
      position: relative;
      z-index: 2;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); }
    #stacks_in_8406 .cd-slider li.move-left {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8406 .cd-slider {
      cursor: pointer; }
      #stacks_in_8406 .cd-slider::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop'; }
      #stacks_in_8406 .cd-slider::after {
        /* slider cover layer - to indicate the image is clickable */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* OVERLAY COLORS */
        background: rgba(81, 62, 93, 0.4) url("../files/bloom_images/cd-icon-zoom-white.svg") no-repeat center center;
        /* size of the icon */
        background-size: 48px;
        
        opacity: 0.6;
        
        z-index: 4;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      #stacks_in_8406 .cd-slider:hover::after {
        opacity: 1; }
      #stacks_in_8406 .cd-slider-active .cd-slider {
        cursor: auto; }
        #stacks_in_8406 .cd-slider-active .cd-slider::after {
          display: none; } }

@media only screen and (min-width: 1024px) {
  #stacks_in_8406 .cd-slider-navigation li, #stacks_in_8406 .cd-slider-pagination {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s; }
    #stacks_in_8406 .cd-slider-active .cd-slider-navigation li, #stacks_in_8406 .cd-slider-active .cd-slider-pagination {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      transition: opacity 0.4s 0.4s, visibility 0s 0.4s; } }
#stacks_in_8406 .cd-slider-navigation li {
  position: absolute;
  z-index: 2;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  #stacks_in_8406 .cd-slider-navigation li:first-of-type {
    left: 10px; }
  #stacks_in_8406 .cd-slider-navigation li:last-of-type {
    right: 10px; }
  #stacks_in_8406 .cd-slider-navigation li a {
    display: block;
    width: 48px;
    height: 48px;
    background: url("../files/bloom_images/cd-icon-arrow-white.svg") no-repeat center center;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }
    #stacks_in_8406 .cd-slider-navigation li a.inactive {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      transition: opacity 0.2s 0s, visibility 0s 0.2s; }
    #stacks_in_8406 .cd-slider-navigation li a:hover {
      opacity: .7; }
  #stacks_in_8406 .cd-slider-navigation li:first-of-type a {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8406 .cd-slider-navigation li:first-child {
      left: 30px; }
    #stacks_in_8406 .cd-slider-navigation li:last-child {
      right: 30px; } }

#stacks_in_8406 .cd-slider-pagination {
  /* you won't see this element in the html but it will be created using jQuery */
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden; }
  #stacks_in_8406 .cd-slider-pagination:after {
    content: "";
    display: table;
    clear: both; }
  #stacks_in_8406 .touch .cd-slider-pagination {
    visibility: hidden; }
  #stacks_in_8406 .cd-slider-pagination li {
    display: inline-block;
    float: left;
    margin: 0 5px !important; }
    #stacks_in_8406 .cd-slider-pagination li.selected a {
     
      background: #f5f4f3;
           }
  #stacks_in_8406 .cd-slider-pagination a {
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
     
    border: 1px solid #f5f4f3;
    /* fix a bug in IE9/10 - transparent anchor not clickable */
    background-color: rgba(255, 255, 255, 0);
    
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }

#stacks_in_8406 .cd-slider-wrapper .cd-close {
  display: none;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: url("../files/bloom_images/cd-icon-close-white.svg") no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.4s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.4s;
  transition: transform 0.3s 0s, visibility 0s 0.4s; }
  #stacks_in_8406 .cd-slider-active .cd-slider-wrapper .cd-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s; }
  #stacks_in_8406 .cd-slider-active .cd-slider-wrapper .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_8406 .cd-slider-wrapper .cd-close {
      display: block; } }

#stacks_in_8406 .cd-item-info {
  padding: 0; }

  @media only screen and (min-width: 1024px) {
    #stacks_in_8406 .cd-item-info {
      position: absolute;
      width: 50%;
      top: 0;
      padding: 0;
      margin: 0;
      
      right: 0; 
      padding-left: 30px; 
      
 } }

#stacks_in_8406 .cd-content p {
  width: 90%;
  max-width: 1024px;
  padding: 4em 0;
  margin: 0 auto;
  color: #afa8a0;
  line-height: 1.8; }






#stacks_in_8406 {
	margin: 20px 0px 25px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8408shim{	padding-top: 30px;}@media all and (max-width: 768px) {.stacks_in_8408shim{	padding-top: 30px;}}@media all and (max-width: 414px) {.stacks_in_8408shim{	padding-top: 30px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8410 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9628shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9628shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_9628shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */#uTubestacks_in_8416 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8416 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





/* Start Responsive Shim stack CSS code */.stacks_in_8422shim{	padding-top: 5px;}@media all and (max-width: 768px) {.stacks_in_8422shim{	padding-top: 5px;}}@media all and (max-width: 414px) {.stacks_in_8422shim{	padding-top: 5px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9625shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9625shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9625shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9626shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9626shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9626shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9627shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_9627shim{	padding-top: 25px;}}@media all and (max-width: 480px) {.stacks_in_9627shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */#stacks_in_8439 .totem_wrapper{display:block;overflow:hidden;position:relative;margin:0;padding:0}#stacks_in_8439 .totem_wrapper.shadow{-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0.00);box-shadow:0px 0px 0px rgba(0,0,0,0.00)}#stacks_in_8439 .inner_shadow:before{content:"";position:absolute;top:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8439 .inner_shadow:after{content:"";position:absolute;bottom:-10px;left:0;width:100%;height:10px;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);z-index:100}#stacks_in_8439 .totem_nav{cursor:pointer;position:relative;z-index:99}#totem_stacks_in_8439{overflow:hidden;margin:0;padding:0}#totem_stacks_in_8439 li{overflow:hidden;display:block;border-bottom:1px solid #2E2E2E}#totem_prev_stacks_in_8439{bottom:-0px}#totem_next_stacks_in_8439{top:-0px}#totem_stacks_in_8439 li{height:240px}








/* Start Responsive Shim stack CSS code */.stacks_in_8464shim{	padding-top: 8%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8465shim{	padding-top: 5%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8466shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_8466shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_8466shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8466 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
.hero-teksten{background-image:url('../files/bgimage-3-23F.png') ;background-repeat:no-repeat    ;background-size:  cover ;background-position:right center ;background-attachment:scroll   ;background-origin:padding-box ;background-blend-mode:multiply ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.hero-teksten{background-attachment:scroll!important}}@media only screen and (min-width:40em){.hero-teksten{background-image:url('../files/bgimageMedium-3-23F.png') }}@media only screen and (min-width:64em){.hero-teksten{background-image:url('../files/bgimageLarge-3-23F.png') }}
.hero-overlay-teksten{background-color:rgba(74, 61, 47, 0.65) ;}
.hero-overlay-teksten{height:100% ;}  
h1-teksten{text-shadow:2px 2px 5px rgba(0, 0, 0, 0.60);}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_135shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8468_136shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */


#stacks_in_8468_23 {
	margin: 10px 0px 10px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_143shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8468_143shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_8468_143shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */.unlimitab-edit-header {
  display: none;
  padding: 10px;
  border-radius: 5px;
  justify-content: center;
  background: linear-gradient(to right, #424D87, #1A1E47); }
  .unlimitab-edit-header img {
    flex: 0 1 auto;
    width: 144px;
    height: 93px; }

#stacks_in_8468_37, #stacks_in_8468_39, #stacks_out_8468_37, .stacks_top {
  overflow: visible !important; }

.fluid--main #stacks_out_8468_37 {
  width: 100%;
  flex: 0 1 auto;
  margin: 0 !important; }

#unlimitab_stacks_in_8468_37 {
  width: 100%;
  flex: 1 0 auto;
  overflow: visible;
  position: relative;
  border-style: solid;
  box-sizing: border-box;
  max-width: 50000px;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.50); }
  #unlimitab_stacks_in_8468_37.main-bg-color {
    background: rgba(85, 118, 88, 1.00); }
    #unlimitab_stacks_in_8468_37.main-bg-color::before {
      opacity: 0; }
  #unlimitab_stacks_in_8468_37.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00)); }
    #unlimitab_stacks_in_8468_37.main-bg-gradient-2::before {
      opacity: 0; }
  #unlimitab_stacks_in_8468_37.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00)); }
    #unlimitab_stacks_in_8468_37.main-bg-gradient-3::before {
      opacity: 0; }
  #unlimitab_stacks_in_8468_37.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #unlimitab_stacks_in_8468_37.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #unlimitab_stacks_in_8468_37.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #unlimitab_stacks_in_8468_37.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #unlimitab_stacks_in_8468_37.show-icons .nav-tab .nav-tab--icon {
    display: inline-block; }
  #unlimitab_stacks_in_8468_37:not(.show-icons) .nav-tab .nav-tab--icon {
    display: none; }
  #unlimitab_stacks_in_8468_37.icons-top .nav-tab .nav-tab--inner {
    flex-direction: column; }
  #unlimitab_stacks_in_8468_37.icons-top .nav-tab .nav-tab--icon {
    margin-bottom: 10px; }
  #unlimitab_stacks_in_8468_37.icons-bottom .nav-tab .nav-tab--inner {
    flex-direction: column-reverse; }
  #unlimitab_stacks_in_8468_37.icons-bottom .nav-tab .nav-tab--icon {
    margin-top: 10px; }
  #unlimitab_stacks_in_8468_37.icons-left .nav-tab .nav-tab--inner {
    flex-direction: row; }
  #unlimitab_stacks_in_8468_37.icons-left .nav-tab .nav-tab--icon {
    margin-right: 10px; }
  #unlimitab_stacks_in_8468_37.icons-right .nav-tab .nav-tab--inner {
    flex-direction: row-reverse; }
  #unlimitab_stacks_in_8468_37.icons-right .nav-tab .nav-tab--icon {
    margin-left: 10px; }
  #unlimitab_stacks_in_8468_37 .unlimitab--nav-outer {
    position: relative; }
    #unlimitab_stacks_in_8468_37 .unlimitab--nav-outer .unlimitab-control {
      top: 0;
      bottom: 0;
      display: flex;
      cursor: pointer;
      position: absolute;
      z-index: 999;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 1.00);
      width: 40px;
      background: rgba(255, 255, 255, 0.00); }
      #unlimitab_stacks_in_8468_37 .unlimitab--nav-outer .unlimitab-control.disabled {
        opacity: 0.5;
        pointer-events: none; }
      #unlimitab_stacks_in_8468_37 .unlimitab--nav-outer .unlimitab-control.next {
        right: 0; }
      #unlimitab_stacks_in_8468_37 .unlimitab--nav-outer .unlimitab-control.prev {
        left: 0; }
      #unlimitab_stacks_in_8468_37 .unlimitab--nav-outer .unlimitab-control.dropdown {
        display: none; }
      #unlimitab_stacks_in_8468_37 .unlimitab--nav-outer .unlimitab-control i {
        line-height: 1;
        vertical-align: middle;
        font-size: 30px; }
  #unlimitab_stacks_in_8468_37 .unlimitab-dropdown {
    display: none; }
  #unlimitab_stacks_in_8468_37.show-dropdown #unlimitab--nav_stacks_in_8468_37 {
    padding: 0 80px 0 40px; }
  #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-control.next {
    right: 40px; }
  #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-control.dropdown {
    display: flex;
    right: 0; }
  #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown {
    top: 0;
    opacity: 0;
    right: 10px;
    display: block;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
    z-index: 9999999999999;
    width: calc(100% - 20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(144, 60, 44, 1.00);
    max-width: 250px;
    border-radius: 0px; }
    #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown.open {
      top: 10px;
      opacity: 1;
      pointer-events: auto; }
    #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--close {
      display: flex;
      justify-content: flex-end;
      min-width: 40px;
      color: rgba(255, 255, 255, 1.00);
      padding: 15px 15px; }
      #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--close i {
        line-height: 1;
        cursor: pointer;
        font-size: 30px; }
    #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list {
      margin: 0;
      padding: 0;
      list-style: none; }
      #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li {
        cursor: pointer;
        position: relative;
        color: rgba(255, 255, 255, 1.00);
        font-size: 18px;
        line-height: 18px;
        padding: 15px 15px; }
        #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li.selected {
          color: rgba(255, 255, 255, 1.00);
          background: rgba(234, 106, 82, 1.00); }
          #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li.selected::before {
            display: block; }
        #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li:hover {
          color: rgba(255, 255, 255, 1.00);
          background: rgba(234, 106, 82, 1.00); }
          #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li:hover::before {
            display: block; }
        #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li::before, #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li::after {
          top: 3px;
          bottom: 3px;
          content: '';
          display: none;
          position: absolute;
          width: 4px;
          background: rgba(255, 255, 255, 1.00); }
        #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li::before {
          left: 0;
          border-radius: 0 4px 4px 0; }
        #unlimitab_stacks_in_8468_37.show-dropdown .unlimitab-dropdown--list li::after {
          right: 0;
          border-radius: 4px 0 0 4px; }

#unlimitab--nav_stacks_in_8468_37 {
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  padding: 0 40px;
  border-radius: 0px 0px 0px 0px; }
  #unlimitab--nav_stacks_in_8468_37.navbar-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #unlimitab--nav_stacks_in_8468_37.navbar-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #unlimitab--nav_stacks_in_8468_37.navbar-font-google {
    font-family: "Fira Sans", "Roboto", sans-serif; }
  #unlimitab--nav_stacks_in_8468_37.navbar-bg-color {
    background: rgba(85, 118, 88, 1.00); }
    #unlimitab--nav_stacks_in_8468_37.navbar-bg-color::before {
      opacity: 0; }
  #unlimitab--nav_stacks_in_8468_37.navbar-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
    #unlimitab--nav_stacks_in_8468_37.navbar-bg-gradient-2::before {
      opacity: 0; }
  #unlimitab--nav_stacks_in_8468_37.navbar-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
    #unlimitab--nav_stacks_in_8468_37.navbar-bg-gradient-3::before {
      opacity: 0; }
  #unlimitab--nav_stacks_in_8468_37.navbar-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #unlimitab--nav_stacks_in_8468_37.navbar-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: ; }
  #unlimitab--nav_stacks_in_8468_37.navbar-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #unlimitab--nav_stacks_in_8468_37.navbar-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, , ); }
  #unlimitab--nav_stacks_in_8468_37 .nav-tab {
    display: flex;
    flex: 0 1 auto;
    cursor: pointer;
    font-family: inherit;
    align-items: stretch;
    box-sizing: border-box;
    justify-content: center; }
    #unlimitab--nav_stacks_in_8468_37 .nav-tab--inner {
      display: flex;
      cursor: pointer;
      white-space: nowrap;
      align-items: center;
      font-family: inherit;
      box-sizing: border-box;
      padding: 20px 15.000000px; }
    #unlimitab--nav_stacks_in_8468_37 .nav-tab--bg {
      display: none; }
    #unlimitab--nav_stacks_in_8468_37 .nav-tab.is-selected .nav-tab--inner {
      font-weight: bold; }
      #unlimitab--nav_stacks_in_8468_37 .nav-tab.is-selected .nav-tab--inner .nav-tab--text {
        color: rgba(255, 255, 255, 1.00); }
      #unlimitab--nav_stacks_in_8468_37 .nav-tab.is-selected .nav-tab--inner .nav-tab--icon {
        color: rgba(255, 255, 255, 1.00); }
    #unlimitab--nav_stacks_in_8468_37 .nav-tab--text {
      line-height: 1;
      font-family: inherit;
      color: rgba(255, 255, 255, 0.80);
      font-size: 18px; }
    #unlimitab--nav_stacks_in_8468_37 .nav-tab--icon {
      display: none;
      line-height: 1;
      color: rgba(255, 255, 255, 0.50);
      font-size: 24px; }
      #unlimitab--nav_stacks_in_8468_37 .nav-tab--icon i {
        font-size: 24px; }
  #unlimitab--nav_stacks_in_8468_37.blur-inactive .nav-tab:not(.is-selected) .nav-tab--inner {
    filter: blur(1px); }
  #unlimitab--nav_stacks_in_8468_37.tab-border-top.border-from-text .nav-tab.is-selected .nav-tab--inner::before {
    background: rgba(255, 255, 255, 1.00); }
  #unlimitab--nav_stacks_in_8468_37.tab-border-top.border-from-icon .nav-tab.is-selected .nav-tab--inner::before {
    background: rgba(255, 255, 255, 1.00); }
  #unlimitab--nav_stacks_in_8468_37.tab-border-top .nav-tab.is-selected .nav-tab--inner::before {
    top: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    border-radius: 0 0 4px 4px; }
  #unlimitab--nav_stacks_in_8468_37.tab-border-bottom.border-from-text .nav-tab.is-selected .nav-tab--inner::before {
    background: rgba(255, 255, 255, 1.00); }
  #unlimitab--nav_stacks_in_8468_37.tab-border-bottom.border-from-icon .nav-tab.is-selected .nav-tab--inner::before {
    background: rgba(255, 255, 255, 1.00); }
  #unlimitab--nav_stacks_in_8468_37.tab-border-bottom .nav-tab.is-selected .nav-tab--inner::before {
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    border-radius: 4px 4px 0 0; }

#unlimitab--nav_stacks_in_8468_37 {
  /* no circle */
  /* big previous & next buttons */
  /* icon color */
  /* hide disabled button */ }
  #unlimitab--nav_stacks_in_8468_37 .flickity-button {
    background: transparent; }
  #unlimitab--nav_stacks_in_8468_37 .flickity-prev-next-button {
    width: 35px;
    height: 100%;
    border-radius: 0;
    box-sizing: border-box; }
    #unlimitab--nav_stacks_in_8468_37 .flickity-prev-next-button.next {
      right: 5px; }
    #unlimitab--nav_stacks_in_8468_37 .flickity-prev-next-button.previous {
      left: 5px; }
  #unlimitab--nav_stacks_in_8468_37 .flickity-button-icon {
    fill: white; }
  #unlimitab--nav_stacks_in_8468_37 .flickity-button:disabled {
    display: block; }

#unlimitab--content_stacks_in_8468_37 {
  overflow: hidden;
  color: rgba(255, 255, 255, 1.00);
  padding-top: 0px; }
  #unlimitab--content_stacks_in_8468_37.content-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #unlimitab--content_stacks_in_8468_37.content-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #unlimitab--content_stacks_in_8468_37.content-font-google {
    font-family: "", "Roboto", sans-serif; }
  #unlimitab--content_stacks_in_8468_37.content-bg-color .content-tab {
    background: rgba(245, 245, 245, 1.00); }
    #unlimitab--content_stacks_in_8468_37.content-bg-color .content-tab::before {
      opacity: 0; }
  #unlimitab--content_stacks_in_8468_37.content-bg-gradient-2 .content-tab {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
    #unlimitab--content_stacks_in_8468_37.content-bg-gradient-2 .content-tab::before {
      opacity: 0; }
  #unlimitab--content_stacks_in_8468_37.content-bg-gradient-3 .content-tab {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
    #unlimitab--content_stacks_in_8468_37.content-bg-gradient-3 .content-tab::before {
      opacity: 0; }
  #unlimitab--content_stacks_in_8468_37.content-bg-image-ov-color .content-tab {
    background: url() no-repeat center center;
    background-size: cover; }
    #unlimitab--content_stacks_in_8468_37.content-bg-image-ov-color .content-tab::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: ; }
  #unlimitab--content_stacks_in_8468_37.content-bg-image-ov-gradient .content-tab {
    background: url() no-repeat center center;
    background-size: cover; }
    #unlimitab--content_stacks_in_8468_37.content-bg-image-ov-gradient .content-tab::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, , ); }
  #unlimitab--content_stacks_in_8468_37 .content-tab {
    width: 100%;
    display: block;
    box-sizing: border-box;
    min-height: 300px;
    margin-right: 10px;
    border-color: rgba(0, 0, 0, 1.00);
    padding: 0px 0px;
    border-radius: 0px 0px 0px 0px;
    border-width: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.50); }
  #unlimitab--content_stacks_in_8468_37 .nav-tab {
    display: none; }
  #unlimitab--content_stacks_in_8468_37 h1, #unlimitab--content_stacks_in_8468_37 h2, #unlimitab--content_stacks_in_8468_37 h3, #unlimitab--content_stacks_in_8468_37 h4, #unlimitab--content_stacks_in_8468_37 h5, #unlimitab--content_stacks_in_8468_37 h6 {
    color: rgba(255, 255, 255, 1.00); }
  #unlimitab--content_stacks_in_8468_37 a, #unlimitab--content_stacks_in_8468_37 a:visited {
    color: rgba(234, 106, 82, 1.00); }
  #unlimitab--content_stacks_in_8468_37 p, #unlimitab--content_stacks_in_8468_37 span, #unlimitab--content_stacks_in_8468_37 blockquote, #unlimitab--content_stacks_in_8468_37 strong {
    color: rgba(255, 255, 255, 1.00); }

@media (max-width: 700px) {
  #unlimitab_stacks_in_8468_37.no-mobile-arrows .unlimitab-control:not(.dropdown) {
    display: none !important; }
  #unlimitab_stacks_in_8468_37.no-mobile-arrows #unlimitab--nav_stacks_in_8468_37 {
    padding: 0 0; }
  #unlimitab_stacks_in_8468_37.no-mobile-arrows.show-dropdown #unlimitab--nav_stacks_in_8468_37 {
    padding: 0 40px 0 40px; }
  #unlimitab_stacks_in_8468_37.icons-top .nav-tab .nav-tab--icon {
    margin-bottom: 10px; }
  #unlimitab_stacks_in_8468_37.icons-bottom .nav-tab .nav-tab--icon {
    margin-top: 10px; }
  #unlimitab_stacks_in_8468_37.icons-left .nav-tab .nav-tab--icon {
    margin-right: 10px; }
  #unlimitab_stacks_in_8468_37.icons-right .nav-tab .nav-tab--icon {
    margin-left: 10px; }
  #unlimitab--nav_stacks_in_8468_37 .nav-tab--text {
    font-size: 18px; }
  #unlimitab--nav_stacks_in_8468_37 .nav-tab--icon {
    font-size: 24px; } }

/*  */
#unlmitab-bg_stacks_in_8468_35.navbar-bg-color {
  background: rgba(57, 62, 70, 1.00); }
  #unlmitab-bg_stacks_in_8468_35.navbar-bg-color::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_35.navbar-bg-gradient-2 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
  #unlmitab-bg_stacks_in_8468_35.navbar-bg-gradient-2::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_35.navbar-bg-gradient-3 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
  #unlmitab-bg_stacks_in_8468_35.navbar-bg-gradient-3::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_35.navbar-bg-image-ov-color {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlmitab-bg_stacks_in_8468_35.navbar-bg-image-ov-color::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: ; }

#unlmitab-bg_stacks_in_8468_35.navbar-bg-image-ov-gradient {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlmitab-bg_stacks_in_8468_35.navbar-bg-image-ov-gradient::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, , ); }

#unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-color {
  background: rgba(85, 118, 88, 0.00); }
  #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-color::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-gradient-2 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
  #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-gradient-2::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-gradient-3 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
  #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-gradient-3::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-image-ov-color {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-image-ov-color::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: ; }

#unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-image-ov-gradient {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-bg.content-bg-image-ov-gradient::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, , ); }

#unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text h1, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text h2, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text h3, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text h4, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text h5, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text h6 {
  color: rgba(36, 36, 36, 1.00); }

#unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text a, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text a:visited {
  color: rgba(36, 36, 36, 1.00); }

#unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text p, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text span, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text blockquote, #unlimitab-tab_stacks_in_8468_35.content-tab.custom-content-text strong {
  color: rgba(36, 36, 36, 0.50); }

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

/* Start Responsive Shim stack CSS code */.stacks_in_8468_144shim{	padding-top: 40px;}@media all and (max-width: 768px) {.stacks_in_8468_144shim{	padding-top: 40px;}}@media all and (max-width: 480px) {.stacks_in_8468_144shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_40 {
	margin: 0px 0px 20px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_155shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_8468_155shim{	padding-top: 25px;}}@media all and (max-width: 414px) {.stacks_in_8468_155shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_42 {
	margin: 0px 0px 20px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_154shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_8468_154shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_8468_154shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_44 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_8468_46shim{	padding-top: 50px;}@media all and (max-width: 768px) {.stacks_in_8468_46shim{	padding-top: 20px;}}@media all and (max-width: 414px) {.stacks_in_8468_46shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */#stacks_in_8468_49 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_49 img.maxwidth{max-width:350px}#stacks_in_8468_49 img.maxheight{width:auto;max-height:250px}

#stacks_in_8468_49 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_8468_50 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_50 img.maxwidth{max-width:350px}#stacks_in_8468_50 img.maxheight{width:auto;max-height:300px}

#stacks_in_8468_50 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_8468_51 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_51 img.maxwidth{max-width:350px}#stacks_in_8468_51 img.maxheight{width:auto;max-height:350px}

#stacks_in_8468_51 {
	margin: 50px 0px 40px 0px;
}
#unlmitab-bg_stacks_in_8468_68.navbar-bg-color {
  background: rgba(57, 62, 70, 1.00); }
  #unlmitab-bg_stacks_in_8468_68.navbar-bg-color::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_68.navbar-bg-gradient-2 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
  #unlmitab-bg_stacks_in_8468_68.navbar-bg-gradient-2::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_68.navbar-bg-gradient-3 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
  #unlmitab-bg_stacks_in_8468_68.navbar-bg-gradient-3::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_68.navbar-bg-image-ov-color {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlmitab-bg_stacks_in_8468_68.navbar-bg-image-ov-color::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: ; }

#unlmitab-bg_stacks_in_8468_68.navbar-bg-image-ov-gradient {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlmitab-bg_stacks_in_8468_68.navbar-bg-image-ov-gradient::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, , ); }

#unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-color {
  background: rgba(85, 118, 88, 0.00); }
  #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-color::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-gradient-2 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
  #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-gradient-2::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-gradient-3 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
  #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-gradient-3::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-image-ov-color {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-image-ov-color::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: ; }

#unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-image-ov-gradient {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-bg.content-bg-image-ov-gradient::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, , ); }

#unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text h1, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text h2, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text h3, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text h4, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text h5, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text h6 {
  color: rgba(36, 36, 36, 1.00); }

#unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text a, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text a:visited {
  color: rgba(36, 36, 36, 1.00); }

#unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text p, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text span, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text blockquote, #unlimitab-tab_stacks_in_8468_68.content-tab.custom-content-text strong {
  color: rgba(36, 36, 36, 0.50); }

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

/* Start Responsive Shim stack CSS code */.stacks_in_8468_145shim{	padding-top: 40px;}@media all and (max-width: 768px) {.stacks_in_8468_145shim{	padding-top: 40px;}}@media all and (max-width: 414px) {.stacks_in_8468_145shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_69 {
	margin: 0px 0px 20px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_146shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_8468_146shim{	padding-top: 25px;}}@media all and (max-width: 414px) {.stacks_in_8468_146shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_71 {
	margin: 0px 0px 20px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_147shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_8468_147shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_8468_147shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_73 {
	margin: 0px 0px 10px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_8468_75shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8468_75shim{	padding-top: 5px;}}@media all and (max-width: 414px) {.stacks_in_8468_75shim{	padding-top: 5px;}}/* End Responsive Shim stack CSS code */#stacks_in_8468_78 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_78 img.maxwidth{max-width:350px}#stacks_in_8468_78 img.maxheight{width:auto;max-height:250px}

#stacks_in_8468_78 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_8468_79 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_79 img.maxwidth{max-width:350px}#stacks_in_8468_79 img.maxheight{width:auto;max-height:300px}

#stacks_in_8468_79 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_8468_80 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_80 img.maxwidth{max-width:350px}#stacks_in_8468_80 img.maxheight{width:auto;max-height:350px}

#stacks_in_8468_80 {
	margin: 200px 0px 20px 15px;
}
#unlmitab-bg_stacks_in_8468_97.navbar-bg-color {
  background: rgba(57, 62, 70, 1.00); }
  #unlmitab-bg_stacks_in_8468_97.navbar-bg-color::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_97.navbar-bg-gradient-2 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
  #unlmitab-bg_stacks_in_8468_97.navbar-bg-gradient-2::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_97.navbar-bg-gradient-3 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
  #unlmitab-bg_stacks_in_8468_97.navbar-bg-gradient-3::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_97.navbar-bg-image-ov-color {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlmitab-bg_stacks_in_8468_97.navbar-bg-image-ov-color::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: ; }

#unlmitab-bg_stacks_in_8468_97.navbar-bg-image-ov-gradient {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlmitab-bg_stacks_in_8468_97.navbar-bg-image-ov-gradient::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, , ); }

#unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-color {
  background: rgba(85, 118, 88, 0.00); }
  #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-color::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-gradient-2 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
  #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-gradient-2::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-gradient-3 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
  #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-gradient-3::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-image-ov-color {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-image-ov-color::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: ; }

#unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-image-ov-gradient {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-bg.content-bg-image-ov-gradient::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, , ); }

#unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text h1, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text h2, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text h3, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text h4, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text h5, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text h6 {
  color: rgba(36, 36, 36, 1.00); }

#unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text a, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text a:visited {
  color: rgba(36, 36, 36, 1.00); }

#unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text p, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text span, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text blockquote, #unlimitab-tab_stacks_in_8468_97.content-tab.custom-content-text strong {
  color: rgba(36, 36, 36, 0.50); }

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

/* Start Responsive Shim stack CSS code */.stacks_in_8468_148shim{	padding-top: 40px;}@media all and (max-width: 768px) {.stacks_in_8468_148shim{	padding-top: 40px;}}@media all and (max-width: 414px) {.stacks_in_8468_148shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_98 {
	margin: 0px 0px 20px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_149shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_8468_149shim{	padding-top: 25px;}}@media all and (max-width: 414px) {.stacks_in_8468_149shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_100 {
	margin: 0px 0px 20px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_150shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_8468_150shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_8468_150shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_102 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_8468_104shim{	padding-top: 50px;}@media all and (max-width: 768px) {.stacks_in_8468_104shim{	padding-top: 20px;}}@media all and (max-width: 414px) {.stacks_in_8468_104shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */#stacks_in_8468_107 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_107 img.maxwidth{max-width:350px}#stacks_in_8468_107 img.maxheight{width:auto;max-height:250px}

#stacks_in_8468_107 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_8468_108 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_108 img.maxwidth{max-width:350px}#stacks_in_8468_108 img.maxheight{width:auto;max-height:300px}

#stacks_in_8468_108 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_8468_109 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_109 img.maxwidth{max-width:350px}#stacks_in_8468_109 img.maxheight{width:auto;max-height:350px}

#stacks_in_8468_109 {
	margin: 50px 0px 40px 0px;
}
#unlmitab-bg_stacks_in_8468_120.navbar-bg-color {
  background: rgba(57, 62, 70, 1.00); }
  #unlmitab-bg_stacks_in_8468_120.navbar-bg-color::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_120.navbar-bg-gradient-2 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
  #unlmitab-bg_stacks_in_8468_120.navbar-bg-gradient-2::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_120.navbar-bg-gradient-3 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
  #unlmitab-bg_stacks_in_8468_120.navbar-bg-gradient-3::before {
    opacity: 0; }

#unlmitab-bg_stacks_in_8468_120.navbar-bg-image-ov-color {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlmitab-bg_stacks_in_8468_120.navbar-bg-image-ov-color::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: ; }

#unlmitab-bg_stacks_in_8468_120.navbar-bg-image-ov-gradient {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlmitab-bg_stacks_in_8468_120.navbar-bg-image-ov-gradient::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, , ); }

#unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-color {
  background: rgba(85, 118, 88, 0.00); }
  #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-color::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-gradient-2 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
  #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-gradient-2::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-gradient-3 {
  background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(0, 0, 0, 1.00), rgba(248, 181, 0, 1.00)); }
  #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-gradient-3::before {
    opacity: 0; }

#unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-image-ov-color {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-image-ov-color::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: ; }

#unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-image-ov-gradient {
  background: url() no-repeat center center;
  background-size: cover; }
  #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-bg.content-bg-image-ov-gradient::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, , ); }

#unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text h1, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text h2, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text h3, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text h4, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text h5, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text h6 {
  color: rgba(36, 36, 36, 1.00); }

#unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text a, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text a:visited {
  color: rgba(36, 36, 36, 1.00); }

#unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text p, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text span, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text blockquote, #unlimitab-tab_stacks_in_8468_120.content-tab.custom-content-text strong {
  color: rgba(36, 36, 36, 0.50); }

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

/* Start Responsive Shim stack CSS code */.stacks_in_8468_151shim{	padding-top: 40px;}@media all and (max-width: 768px) {.stacks_in_8468_151shim{	padding-top: 40px;}}@media all and (max-width: 414px) {.stacks_in_8468_151shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_121 {
	margin: 0px 0px 20px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_152shim{	padding-top: 25px;}@media all and (max-width: 768px) {.stacks_in_8468_152shim{	padding-top: 25px;}}@media all and (max-width: 414px) {.stacks_in_8468_152shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_123 {
	margin: 0px 0px 20px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_153shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_8468_153shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_8468_153shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */

#stacks_in_8468_125 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_8468_127shim{	padding-top: 50px;}@media all and (max-width: 768px) {.stacks_in_8468_127shim{	padding-top: 20px;}}@media all and (max-width: 414px) {.stacks_in_8468_127shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */#stacks_in_8468_130 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_130 img.maxwidth{max-width:350px}#stacks_in_8468_130 img.maxheight{width:auto;max-height:250px}

#stacks_in_8468_130 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_8468_131 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_131 img.maxwidth{max-width:350px}#stacks_in_8468_131 img.maxheight{width:auto;max-height:300px}

#stacks_in_8468_131 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_8468_132 img{border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_8468_132 img.maxwidth{max-width:350px}#stacks_in_8468_132 img.maxheight{width:auto;max-height:350px}

#stacks_in_8468_132 {
	margin: 50px 0px 40px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8468_137shim{	padding-top: 10%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8468_138shim{	padding-top: 7%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8468_139shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8469shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_8469shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_8469shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8469 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8472shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8473shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */


#stacks_in_8483 {
	margin: 10px 0px 10px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9629shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9629shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_9629shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code *//*  */
#exp-grid-stacks_in_8489 {
  margin: 0 auto;
  max-width: 1200px; }
  #exp-grid-stacks_in_8489 .exp-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    box-sizing: border-box;
    padding: 1px; }
    #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item {
      display: -ms-flexbox;
      display: flex;
      padding: 0 1px;
      -ms-flex-direction: column;
          flex-direction: column;
      box-sizing: border-box;
      transition: opacity 0.3s; }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20 {
        width: calc(100% / 20); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+19) .exp-grid-item-content {
          margin-left: calc((18 * -100%) - (1px * (2 * (19 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20:nth-child(20n+20) .exp-grid-item-content {
          margin-left: calc((19 * -100%) - (1px * (2 * (20 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-20 .exp-grid-item-content {
          width: calc((100% * 20) + (1px  * (2 * (20 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19 {
        width: calc(100% / 19); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19:nth-child(19n+19) .exp-grid-item-content {
          margin-left: calc((18 * -100%) - (1px * (2 * (19 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-19 .exp-grid-item-content {
          width: calc((100% * 19) + (1px  * (2 * (19 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18 {
        width: calc(100% / 18); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18:nth-child(18n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-18 .exp-grid-item-content {
          width: calc((100% * 18) + (1px  * (2 * (18 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17 {
        width: calc(100% / 17); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17:nth-child(17n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-17 .exp-grid-item-content {
          width: calc((100% * 17) + (1px  * (2 * (17 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16 {
        width: calc(100% / 16); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16:nth-child(16n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-16 .exp-grid-item-content {
          width: calc((100% * 16) + (1px  * (2 * (16 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15 {
        width: calc(100% / 15); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15:nth-child(15n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-15 .exp-grid-item-content {
          width: calc((100% * 15) + (1px  * (2 * (15 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14 {
        width: calc(100% / 14); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14:nth-child(14n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-14 .exp-grid-item-content {
          width: calc((100% * 14) + (1px  * (2 * (14 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13 {
        width: calc(100% / 13); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13:nth-child(13n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-13 .exp-grid-item-content {
          width: calc((100% * 13) + (1px  * (2 * (13 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12 {
        width: calc(100% / 12); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12:nth-child(12n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-12 .exp-grid-item-content {
          width: calc((100% * 12) + (1px  * (2 * (12 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11 {
        width: calc(100% / 11); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11:nth-child(11n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-11 .exp-grid-item-content {
          width: calc((100% * 11) + (1px  * (2 * (11 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10 {
        width: calc(100% / 10); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10:nth-child(10n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-10 .exp-grid-item-content {
          width: calc((100% * 10) + (1px  * (2 * (10 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9 {
        width: calc(100% / 9); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9:nth-child(9n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9:nth-child(9n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9:nth-child(9n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9:nth-child(9n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9:nth-child(9n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9:nth-child(9n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9:nth-child(9n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9:nth-child(9n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-9 .exp-grid-item-content {
          width: calc((100% * 9) + (1px  * (2 * (9 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8 {
        width: calc(100% / 8); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8:nth-child(8n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8:nth-child(8n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8:nth-child(8n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8:nth-child(8n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8:nth-child(8n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8:nth-child(8n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8:nth-child(8n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-8 .exp-grid-item-content {
          width: calc((100% * 8) + (1px  * (2 * (8 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-7 {
        width: calc(100% / 7); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-7:nth-child(7n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-7:nth-child(7n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-7:nth-child(7n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-7:nth-child(7n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-7:nth-child(7n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-7:nth-child(7n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-7 .exp-grid-item-content {
          width: calc((100% * 7) + (1px  * (2 * (7 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-6 {
        width: calc(100% / 6); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-6:nth-child(6n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-6:nth-child(6n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-6:nth-child(6n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-6:nth-child(6n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-6:nth-child(6n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-6 .exp-grid-item-content {
          width: calc((100% * 6) + (1px  * (2 * (6 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-5 {
        width: calc(100% / 5); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-5:nth-child(5n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-5:nth-child(5n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-5:nth-child(5n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-5:nth-child(5n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-5 .exp-grid-item-content {
          width: calc((100% * 5) + (1px  * (2 * (5 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-4 {
        width: calc(100% / 4); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-4:nth-child(4n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-4:nth-child(4n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-4:nth-child(4n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-4 .exp-grid-item-content {
          width: calc((100% * 4) + (1px  * (2 * (4 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-3 {
        width: calc(100% / 3); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-3:nth-child(3n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-3:nth-child(3n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-3 .exp-grid-item-content {
          width: calc((100% * 3) + (1px  * (2 * (3 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-2 {
        width: calc(100% / 2); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-2:nth-child(2n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-2 .exp-grid-item-content {
          width: calc((100% * 2) + (1px  * (2 * (2 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-1 {
        width: calc(100% / 1); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item.cols-1 .exp-grid-item-content {
          width: calc((100% * 1) + (1px  * (2 * (1 - 1)))); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header {
        /*  */
        font-family: "Fira Sans";
        /*  */
        /*  */
        background: rgba(46, 46, 46, 1.00);
        /*  */
        /*  */
        /*  */
        margin: 1px 0;
        padding: 15px 0px;
        border-radius: 0px;
        min-height: 150px;
        opacity: 0;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        overflow: hidden;
        position: relative;
        -ms-flex-direction: column;
            flex-direction: column;
        box-sizing: border-box;
        transition: all 0.3s ease;
        animation: item-in 0.3s 0.3s;
        animation-fill-mode: forwards; }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header::before {
          /*  */ }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header:hover {
          z-index: 3;
          transform: translateY(0.00px) scale(1.00);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header::before {
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1;
          display: none;
          position: absolute;
          background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
          z-index: 2;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          -ms-flex-pack: center;
              justify-content: center;
          color: rgba(255, 255, 255, 1.00);
          width: 50px;
          height: 50px;
          font-size: 45px;
          background: rgba(255, 255, 255, 0.00);
          border-radius: 25px;
          margin-bottom: 10px; }
          #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header .header-icon i {
            line-height: 0;
            font-size: inherit; }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header .header-title {
          z-index: 2;
          color: rgba(255, 255, 255, 1.00);
          font-size: 21px;
          font-weight: normal;
          line-height: calc(21px * 1.4); }
      #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content {
        /*  */
        font-family: "Fira Sans";
        /*  */
        background: rgba(46, 46, 46, 1.00);
        height: 0;
        box-sizing: border-box;
        overflow: hidden !important;
        transition: all 0.3s, width 0s;
        border-radius: 0px;
        width: calc((100% * 1px) + (1px  * (2 * (1px - 1)))); }
        #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner {
          margin: 0 auto;
          box-sizing: border-box;
          padding: 0px 0px;
          max-width: 2000px;
          color: rgba(255, 255, 255, 0.60); }
          #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h1, #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h2, #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h3, #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h4, #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h5, #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h6 {
            color: rgba(255, 255, 255, 1.00); }
          #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner a, #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner a:visited {
            color: rgba(255, 255, 255, 1.00); }

#exp-grid-stacks_in_8489.active-item .exp-grid .exp-grid-item {
  opacity: 0.35;
  pointer-events: none; }
  #exp-grid-stacks_in_8489.active-item .exp-grid .exp-grid-item.active {
    opacity: 1;
    pointer-events: auto; }
    #exp-grid-stacks_in_8489.active-item .exp-grid .exp-grid-item.active .exp-grid-item-header:hover {
      transform: none; }
    #exp-grid-stacks_in_8489.active-item .exp-grid .exp-grid-item.active .exp-grid-item-content {
      margin-top: 1px;
      margin-bottom: 1px; }

#exp-grid-stacks_in_8489.items-v-top .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-stacks_in_8489.items-v-center .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-stacks_in_8489.items-v-bottom .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-stacks_in_8489.items-h-left .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-stacks_in_8489.items-h-center .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-stacks_in_8489.items-h-right .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }

#exp-grid-stacks_in_8489.hide-icons .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-stacks_in_8489.hide-titles .exp-grid .exp-grid-item .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-stacks_in_8489.hide-titles .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-stacks_in_8489.items-inner-shadow .exp-grid .exp-grid-item .exp-grid-item-header {
  box-shadow: inset 0 -50px 30px rgba(0, 0, 0, 0.6); }

#exp-grid-stacks_in_8489.force-overflow .exp-grid .exp-grid-item .exp-grid-item-content .stacks_in, #exp-grid-stacks_in_8489.force-overflow .exp-grid .exp-grid-item .exp-grid-item-content .stacks_out {
  /*  */
  overflow: visible !important;
  /*  */ }

@media (min-width: 401px) and (max-width: 700px) {
  #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header {
    min-height: 150px; } }

@media (min-width: 701px) {
  #exp-grid-stacks_in_8489 .exp-grid .exp-grid-item .exp-grid-item-header {
    min-height: 200px; } }

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

@keyframes item-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.35; } }

#stacks_in_8489 {
	background-color: rgba(46, 46, 46, 1.00);
	margin: 15px 0px 20px 0px;
}
/*  */
#exp-grid-item-stacks_in_9120.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_9120.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_9120.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_9120.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(85, 118, 89, 1.00); }
  #exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_9120.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(85, 118, 89, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_9120.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_9120.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.00)) !important; }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_9120.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_9121 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_9121 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_9121 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_9121 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_9121 .vm-header-icon i {
        /*  */
        background: rgba(85, 118, 89, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_9121 .vm-header-title, #view-more-stacks_in_9121 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_9121 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_9121 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(93, 151, 91, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_9121 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_9121 .vm-footer-actions a, #view-more-stacks_in_9121 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(85, 118, 89, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_9121 .vm-footer-actions a:hover, #view-more-stacks_in_9121 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_9121 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_9121 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_9121 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_9121 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_9121 .vm-content h1, #view-more-stacks_in_9121 .vm-content h2, #view-more-stacks_in_9121 .vm-content h3, #view-more-stacks_in_9121 .vm-content h4, #view-more-stacks_in_9121 .vm-content h5, #view-more-stacks_in_9121 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_9121 .vm-content a {
      color: rgba(171, 131, 85, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_9121 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_9121 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_9121 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_9121.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_9121.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_9121.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_9121.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_9121.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_9121.expanded .vm-header-title, #view-more-stacks_in_9121.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_9121.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_9121.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_9121.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_9121.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_9121.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_9121.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_9122 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_9122,
#printBoxFooterstacks_in_9122 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_9122 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_9122 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_9122 #printerContent,
.printstacks_in_9122 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_9122 #printBoxHeaderstacks_in_9122,
.printstacks_in_9122 #printBoxFooterstacks_in_9122 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_9122 * {
		display: none !important;
	}
	
	.printstacks_in_9122 #printerContent,
	.printstacks_in_9122 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_9122.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_9122 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_9123 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9630shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9630shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9630shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9135shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9135shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_9135shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//*  */
#exp-grid-item-stacks_in_8491.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8491.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8491.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8491.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(171, 131, 85, 1.00); }
  #exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8491.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(171, 131, 85, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_8491.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_8491.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8491.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_8493 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_8493 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8493 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8493 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8493 .vm-header-icon i {
        /*  */
        background: rgba(171, 131, 85, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_8493 .vm-header-title, #view-more-stacks_in_8493 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_8493 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_8493 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(171, 131, 85, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_8493 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_8493 .vm-footer-actions a, #view-more-stacks_in_8493 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(171, 131, 85, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_8493 .vm-footer-actions a:hover, #view-more-stacks_in_8493 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_8493 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_8493 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_8493 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_8493 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_8493 .vm-content h1, #view-more-stacks_in_8493 .vm-content h2, #view-more-stacks_in_8493 .vm-content h3, #view-more-stacks_in_8493 .vm-content h4, #view-more-stacks_in_8493 .vm-content h5, #view-more-stacks_in_8493 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_8493 .vm-content a {
      color: rgba(85, 118, 89, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_8493 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_8493 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_8493 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_8493.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_8493.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8493.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8493.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8493.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_8493.expanded .vm-header-title, #view-more-stacks_in_8493.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8493.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_8493.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_8493.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_8493.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_8493.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_8493.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_8495 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_8495,
#printBoxFooterstacks_in_8495 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_8495 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_8495 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_8495 #printerContent,
.printstacks_in_8495 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_8495 #printBoxHeaderstacks_in_8495,
.printstacks_in_8495 #printBoxFooterstacks_in_8495 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_8495 * {
		display: none !important;
	}
	
	.printstacks_in_8495 #printerContent,
	.printstacks_in_8495 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_8495.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_8495 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_8497 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9631shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9631shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9631shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8507shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8507shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8507shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//*  */
#exp-grid-item-stacks_in_8514.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8514.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8514.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8514.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(234, 106, 82, 1.00); }
  #exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8514.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(143, 60, 44, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_8514.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_8514.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.00)) !important; }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8514.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_8516 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_8516 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8516 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8516 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8516 .vm-header-icon i {
        /*  */
        background: rgba(144, 60, 44, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_8516 .vm-header-title, #view-more-stacks_in_8516 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_8516 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_8516 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(234, 106, 82, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_8516 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_8516 .vm-footer-actions a, #view-more-stacks_in_8516 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(144, 60, 44, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_8516 .vm-footer-actions a:hover, #view-more-stacks_in_8516 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_8516 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_8516 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_8516 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_8516 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_8516 .vm-content h1, #view-more-stacks_in_8516 .vm-content h2, #view-more-stacks_in_8516 .vm-content h3, #view-more-stacks_in_8516 .vm-content h4, #view-more-stacks_in_8516 .vm-content h5, #view-more-stacks_in_8516 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_8516 .vm-content a {
      color: rgba(234, 106, 82, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_8516 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_8516 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_8516 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_8516.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_8516.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_8516.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8516.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_8516.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_8516.expanded .vm-header-title, #view-more-stacks_in_8516.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_8516.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_8516.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_8516.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_8516.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_8516.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_8516.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_8518 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_8518,
#printBoxFooterstacks_in_8518 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_8518 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_8518 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_8518 #printerContent,
.printstacks_in_8518 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_8518 #printBoxHeaderstacks_in_8518,
.printstacks_in_8518 #printBoxFooterstacks_in_8518 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_8518 * {
		display: none !important;
	}
	
	.printstacks_in_8518 #printerContent,
	.printstacks_in_8518 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_8518.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_8518 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_8520 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9632shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9632shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9632shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8530shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8530shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_8530shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//*  */
#exp-grid-item-stacks_in_8511.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_8511.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_8511.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_8511.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(101, 101, 101, 1.00); }
  #exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_8511.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(101, 101, 101, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_8511.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_8511.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_8511.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }
/*  */
#view-more-stacks_in_9532 {
  /*  */
  background: rgba(46, 46, 46, 1.00);
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 2000px;
  border-radius: 0px;
  min-height: 0px;
  margin: 0 auto; }
  #view-more-stacks_in_9532 .vm-header {
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_9532 .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_9532 .vm-header-icon {
      top: 15px;
      height: 30px;
      left: 0;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
      position: absolute;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      transition: all 0.8s ease; }
      #view-more-stacks_in_9532 .vm-header-icon i {
        /*  */
        background: rgba(101, 101, 101, 1.00);
        /*  */
        /*  */
        /*  */
        color: rgba(49, 44, 50, 1.00);
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px;
        -ms-flex-align: center;
            align-items: center;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
            justify-content: center; }
    #view-more-stacks_in_9532 .vm-header-title, #view-more-stacks_in_9532 .vm-header-description {
      transition: all 0.8s ease; }
    #view-more-stacks_in_9532 .vm-header-title {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      line-height: 45.304001px;
      max-width: 700px;
      font-weight: normal;
      margin: 0 auto 10px auto; }
    #view-more-stacks_in_9532 .vm-header-description {
      /*  */
      font-family: "Fira Sans";
      /*  */
      color: rgba(116, 116, 116, 1.00);
      font-size: 18px;
      line-height: 29.124001px;
      max-width: 700px;
      margin: 0 auto 0 auto;
      width: 100%; }
  #view-more-stacks_in_9532 .vm-footer {
    padding: 30px 0px 30px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    #view-more-stacks_in_9532 .vm-footer-actions a, #view-more-stacks_in_9532 .vm-footer-actions a:visited {
      /*  */
      font-family: "Fira Sans";
      /*  */
      /*  */
      background: rgba(63, 63, 63, 1.00);
      /*  */
      /*  */
      /*  */
      color: rgba(255, 255, 255, 1.00);
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 0px;
      cursor: pointer;
      margin-bottom: 5px;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
      #view-more-stacks_in_9532 .vm-footer-actions a:hover, #view-more-stacks_in_9532 .vm-footer-actions a:visited:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    #view-more-stacks_in_9532 .vm-footer-actions a.vm-action-go {
      /*  */
      /*  */
      /*  */
      display: none; }
      #view-more-stacks_in_9532 .vm-footer-actions a.vm-action-go::before {
        content: 'Neem voor meer informatie contact op';
        display: inline-block; }
    #view-more-stacks_in_9532 .vm-footer-actions a.vm-action-more::before {
      content: 'Lees verder...';
      display: inline-block; }
  #view-more-stacks_in_9532 .vm-content {
    /*  */
    height: 0;
    /*  */
    color: rgba(255, 255, 255, 1.00);
    overflow: hidden; }
    #view-more-stacks_in_9532 .vm-content h1, #view-more-stacks_in_9532 .vm-content h2, #view-more-stacks_in_9532 .vm-content h3, #view-more-stacks_in_9532 .vm-content h4, #view-more-stacks_in_9532 .vm-content h5, #view-more-stacks_in_9532 .vm-content h6 {
      color: rgba(255, 255, 255, 1.00); }
    #view-more-stacks_in_9532 .vm-content a {
      color: rgba(85, 118, 89, 1.00);
      text-decoration: none; }
      #view-more-stacks_in_9532 .vm-content a:hover {
        text-decoration: underline; }
    #view-more-stacks_in_9532 .vm-content-inner {
      /*  */
      font-family: "Fira Sans";
      /*  */
      padding: 20px 0px;
      max-width: 2000px;
      margin: 0 auto; }
      #view-more-stacks_in_9532 .vm-content-inner p {
        font-size: 14px;
        line-height: 25.888px; }
  #view-more-stacks_in_9532.expanded.custom-expand-width {
    max-width: 2000px; }
  #view-more-stacks_in_9532.expanded .vm-header {
    min-height: 0px;
    padding-left: 0px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, 0.00);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    transition: all 0.8s ease; }
    #view-more-stacks_in_9532.expanded .vm-header * {
      box-sizing: border-box;
      transition: all 0.8s ease; }
    #view-more-stacks_in_9532.expanded .vm-header-icon {
      top: 0;
      width: 0px;
      left: 0px;
      bottom: 0;
      height: 100%;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      position: absolute;
      transition: all 0.8s ease; }
      #view-more-stacks_in_9532.expanded .vm-header-icon i {
        width: 0px;
        height: 0px;
        font-size: 0px;
        border-radius: 70px; }
    #view-more-stacks_in_9532.expanded .vm-header-title, #view-more-stacks_in_9532.expanded .vm-header-description {
      width: 100%;
      margin-left: 0;
      transition: all 0.8s ease; }
    #view-more-stacks_in_9532.expanded .vm-header-title {
      font-size: 24px;
      line-height: 38.832001px;
      margin-bottom: 10px; }
    #view-more-stacks_in_9532.expanded .vm-header-description {
      font-size: 18px;
      line-height: 29.124001px; }
  #view-more-stacks_in_9532.expanded .vm-footer a.vm-action-go {
    display: inline-block; }
  #view-more-stacks_in_9532.expanded .vm-footer a.vm-action-more {
    /*  */
    background: rgba(101, 101, 101, 1.00);
    /*  */
    /*  */
    /*  */
    color: rgba(255, 255, 255, 1.00);
    margin-right: 20px;
    box-shadow: none; }
    #view-more-stacks_in_9532.expanded .vm-footer a.vm-action-more::before {
      content: 'Sluit'; }
  #view-more-stacks_in_9532.expanded.no-action-button a.vm-action-go {
    display: none; }
#printBoxstacks_in_9533 {
	display: block;
}

/* PrintBox header and footer (hidden on screen) */
#printBoxHeaderstacks_in_9533,
#printBoxFooterstacks_in_9533 {
	display: none;
}

/* When the print button is active, set all page elements to 0 opacity (invisible) */
.printstacks_in_9533 * {
	visibility: hidden !important;
}

/* Absolutely position our PrintBox at the top of the page, outside of the normal page flow */
.printstacks_in_9533 #printerContent {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100%;
	height: auto;
}

/* Make sure only our PrintBox is displaying */
.printstacks_in_9533 #printerContent,
.printstacks_in_9533 #printerContent * {
	visibility: visible !important;
}

/* Display our header and footer */
.printstacks_in_9533 #printBoxHeaderstacks_in_9533,
.printstacks_in_9533 #printBoxFooterstacks_in_9533 {
	display: block;
}

/* Remove hidden page elements from our printout to save paper */
@media print {
	.printstacks_in_9533 * {
		display: none !important;
	}
	
	.printstacks_in_9533 #printerContent,
	.printstacks_in_9533 #printerContent * {
		display: block !important;
		visibility: visible !important;
	}
}

/* Hide print button on devices that do not support printing (detected via JS) */
#printBoxButtonstacks_in_9533.notprintBoxCompatible {
	display: none;
}

#printBoxButtonWrapperstacks_in_9533 {
	text-align: right;
	display: block;
	padding-top: 1.00em;
}

/* Button styling */
/*  */

/* Custom button styling, if enabled in the stack settings */
/*  */

/*  */

#stacks_in_9534 {
	margin: 0px 0px 20px 0px;
}

/* Start Responsive Shim stack CSS code */.stacks_in_9633shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_9633shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_9633shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9538shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_9538shim{	padding-top: 10px;}}@media all and (max-width: 414px) {.stacks_in_9538shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8537shim{	padding-top: 8%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8538shim{	padding-top: 5%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8539shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_8539shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_8539shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8539 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8542shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8543shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */
#stacks_in_8552 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_8553 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

#stacks_in_8554 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_8555 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8556shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */.topbox_content {
  width: 85vw;
  height: 85vh;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}


/* Stops the page scrolling when the lightbox is opened */
html.topbox_open,
html.topbox_open body {
overflow: hidden !important;
}


#topbox_trigger_region_stacks_in_8559 {
  position: relative;
}

#topbox_trigger_stacks_in_8559 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}












/* Our default lightbox skin (darkroom) */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_skin_darkroom .topbox_fill {
  background: rgba(0, 0, 0, 0.8);
}

.topbox_skin_darkroom .topbox_pdf_mobile_message {
  color: #FFFFFF;
  font-size: 18px;
}

.topbox_skin_darkroom .topbox_pdf_mobile_message a,
.topbox_skin_darkroom .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_darkroom .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_darkroom .topbox_prev,
.topbox_skin_darkroom .topbox_next,
.topbox_skin_darkroom .topbox_close {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 45px;
  opacity: 0.5;
  transition: all 300ms ease-in;
  padding: 2vw;
  line-height: 1;
}

.topbox_skin_darkroom .topbox_close {
  margin-top: -10px;
  font-size: 55px;
}

.topbox_skin_darkroom .topbox_prev:hover,
.topbox_skin_darkroom .topbox_next:hover,
.topbox_skin_darkroom .topbox_close:hover {
  opacity: 1;
}

.topbox_skin_darkroom .topbox_prev:before {
  content: "←"
}

.topbox_skin_darkroom .topbox_next:before {
  content: "→"
}

.topbox_skin_darkroom .topbox_close:before {
  content: "×";
}

.topbox_skin_darkroom .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}





























































/* Playr custom video controls */
@keyframes plyr-progress{to{background-position:25px 0}}@keyframes plyr-popup{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes plyr-fade-in{from{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:subpixel-antialiased;direction:ltr;font-family:Avenir,"Avenir Next","Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;font-variant-numeric:tabular-nums;font-weight:500;line-height:1.7;max-width:100%;min-width:200px;position:relative;text-shadow:none;transition:box-shadow .3s ease}.plyr audio,.plyr video{border-radius:inherit;height:auto;vertical-align:middle;width:100%}.plyr button{font:inherit;line-height:inherit;width:auto}.plyr:focus{outline:0}.plyr--full-ui{box-sizing:border-box}.plyr--full-ui *,.plyr--full-ui ::after,.plyr--full-ui ::before{box-sizing:inherit}.plyr--full-ui a,.plyr--full-ui button,.plyr--full-ui input,.plyr--full-ui label{touch-action:manipulation}.plyr__badge{background:#4a5764;border-radius:2px;color:#fff;font-size:9px;line-height:1;padding:3px 4px}.plyr--full-ui ::-webkit-media-text-track-container{display:none}.plyr__captions{animation:plyr-fade-in .3s ease;bottom:0;color:#fff;display:none;font-size:14px;left:0;padding:10px;position:absolute;text-align:center;transition:transform .4s ease-in-out;width:100%}.plyr__captions .plyr__caption{background:rgba(0,0,0,.8);border-radius:2px;-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:185%;padding:.2em .5em;white-space:pre-wrap}.plyr__captions .plyr__caption div{display:inline}.plyr__captions span:empty{display:none}@media (min-width:480px){.plyr__captions{font-size:16px;padding:20px}}@media (min-width:768px){.plyr__captions{font-size:18px}}.plyr--captions-active .plyr__captions{display:block}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(-40px)}.plyr__control{background:0 0;border:0;border-radius:3px;color:inherit;cursor:pointer;flex-shrink:0;overflow:visible;padding:7px;position:relative;transition:all .3s ease}.plyr__control svg{display:block;fill:currentColor;height:18px;pointer-events:none;width:18px}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}a.plyr__control{text-decoration:none}a.plyr__control::after,a.plyr__control::before{display:none}.plyr__control.plyr__control--pressed .icon--not-pressed,.plyr__control.plyr__control--pressed .label--not-pressed,.plyr__control:not(.plyr__control--pressed) .icon--pressed,.plyr__control:not(.plyr__control--pressed) .label--pressed{display:none}.plyr--audio .plyr__control.plyr__tab-focus,.plyr--audio .plyr__control:hover,.plyr--audio .plyr__control[aria-expanded=true]{background:#00b3ff;color:#fff}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#00b3ff;color:#fff}.plyr__control--overlaid{background:rgba(0,179,255,.8);border:0;border-radius:100%;color:#fff;display:none;left:50%;padding:15px;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:2}.plyr__control--overlaid svg{left:2px;position:relative}.plyr__control--overlaid:focus,.plyr__control--overlaid:hover{background:#00b3ff}.plyr--playing .plyr__control--overlaid{opacity:0;visibility:hidden}.plyr--full-ui.plyr--video .plyr__control--overlaid{display:block}.plyr--full-ui ::-webkit-media-controls{display:none}.plyr__controls{align-items:center;display:flex;justify-content:flex-end;text-align:center}.plyr__controls .plyr__progress__container{flex:1;min-width:0}.plyr__controls .plyr__controls__item{margin-left:2.5px}.plyr__controls .plyr__controls__item:first-child{margin-left:0;margin-right:auto}.plyr__controls .plyr__controls__item.plyr__progress__container{padding-left:2.5px}.plyr__controls .plyr__controls__item.plyr__time{padding:0 5px}.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,.plyr__controls .plyr__controls__item.plyr__time+.plyr__time,.plyr__controls .plyr__controls__item.plyr__time:first-child{padding-left:0}.plyr__controls .plyr__controls__item.plyr__volume{padding-right:5px}.plyr__controls .plyr__controls__item.plyr__volume:first-child{padding-right:0}.plyr__controls:empty{display:none}.plyr--audio .plyr__controls{background:#fff;border-radius:inherit;color:#4a5764;padding:10px}.plyr--video .plyr__controls{background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.7));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0;color:#fff;left:0;padding:20px 5px 5px;position:absolute;right:0;transition:opacity .4s ease-in-out,transform .4s ease-in-out;z-index:3}@media (min-width:480px){.plyr--video .plyr__controls{padding:35px 10px 10px}}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;transform:translateY(100%)}.plyr [data-plyr=airplay],.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen],.plyr [data-plyr=pip]{display:none}.plyr--airplay-supported [data-plyr=airplay],.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen],.plyr--pip-supported [data-plyr=pip]{display:inline-block}.plyr__menu{display:flex;position:relative}.plyr__menu .plyr__control svg{transition:transform .3s ease}.plyr__menu .plyr__control[aria-expanded=true] svg{transform:rotate(90deg)}.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip{display:none}.plyr__menu__container{animation:plyr-popup .2s ease;background:rgba(255,255,255,.9);border-radius:4px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);color:#4a5764;font-size:16px;margin-bottom:10px;position:absolute;right:-3px;text-align:left;white-space:nowrap;z-index:3}.plyr__menu__container>div{overflow:hidden;transition:height .35s cubic-bezier(.4,0,.2,1),width .35s cubic-bezier(.4,0,.2,1)}.plyr__menu__container::after{border:4px solid transparent;border-top-color:rgba(255,255,255,.9);content:'';height:0;position:absolute;right:15px;top:100%;width:0}.plyr__menu__container [role=menu]{padding:7px}.plyr__menu__container [role=menuitem],.plyr__menu__container [role=menuitemradio]{margin-top:2px}.plyr__menu__container [role=menuitem]:first-child,.plyr__menu__container [role=menuitemradio]:first-child{margin-top:0}.plyr__menu__container .plyr__control{align-items:center;color:#4a5764;display:flex;font-size:14px;padding:4px 11px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr__menu__container .plyr__control>span{align-items:inherit;display:flex;width:100%}.plyr__menu__container .plyr__control::after{border:4px solid transparent;content:'';position:absolute;top:50%;transform:translateY(-50%)}.plyr__menu__container .plyr__control--forward{padding-right:28px}.plyr__menu__container .plyr__control--forward::after{border-left-color:rgba(74,87,100,.8);right:5px}.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after,.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor}.plyr__menu__container .plyr__control--back{font-weight:500;margin:7px;margin-bottom:3px;padding-left:28px;position:relative;width:calc(100% - 14px)}.plyr__menu__container .plyr__control--back::after{border-right-color:rgba(74,87,100,.8);left:7px}.plyr__menu__container .plyr__control--back::before{background:#c1c9d1;box-shadow:0 1px 0 #fff;content:'';height:1px;left:0;margin-top:4px;overflow:hidden;position:absolute;right:0;top:100%}.plyr__menu__container .plyr__control--back.plyr__tab-focus::after,.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor}.plyr__menu__container .plyr__control[role=menuitemradio]{padding-left:7px}.plyr__menu__container .plyr__control[role=menuitemradio]::after,.plyr__menu__container .plyr__control[role=menuitemradio]::before{border-radius:100%}.plyr__menu__container .plyr__control[role=menuitemradio]::before{background:rgba(0,0,0,.1);content:'';display:block;flex-shrink:0;height:16px;margin-right:10px;transition:all .3s ease;width:16px}.plyr__menu__container .plyr__control[role=menuitemradio]::after{background:#fff;border:0;height:6px;left:12px;opacity:0;top:50%;transform:translateY(-50%) scale(0);transition:transform .3s ease,opacity .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before{background:#00b3ff}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after{opacity:1;transform:translateY(-50%) scale(1)}.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before,.plyr__menu__container .plyr__control[role=menuitemradio]:hover::before{background:rgba(0,0,0,.1)}.plyr__menu__container .plyr__menu__value{align-items:center;display:flex;margin-left:auto;margin-right:-5px;overflow:hidden;padding-left:25px;pointer-events:none}.plyr--full-ui input[type=range]{-webkit-appearance:none;background:0 0;border:0;border-radius:26px;color:#00b3ff;display:block;height:19px;margin:0;padding:0;transition:box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-webkit-user-select:none;user-select:none;background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0))}.plyr--full-ui input[type=range]::-webkit-slider-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px;-webkit-appearance:none;margin-top:-4px}.plyr--full-ui input[type=range]::-moz-range-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-moz-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px}.plyr--full-ui input[type=range]::-moz-range-progress{background:currentColor;border-radius:2.5px;height:5px}.plyr--full-ui input[type=range]::-ms-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;color:transparent}.plyr--full-ui input[type=range]::-ms-fill-upper{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-ms-fill-lower{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;background:currentColor}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px;margin-top:0}.plyr--full-ui input[type=range]::-ms-tooltip{display:none}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]::-moz-range-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]::-ms-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]::-ms-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr__poster{background-color:#000;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr__time{font-size:14px}.plyr__time+.plyr__time::before{content:'\2044';margin-right:10px}@media (max-width:767px){.plyr__time+.plyr__time{display:none}}.plyr--video .plyr__time{text-shadow:0 1px 1px rgba(0,0,0,.15)}.plyr__tooltip{background:rgba(255,255,255,.9);border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);color:#4a5764;font-size:14px;font-weight:500;left:50%;line-height:1.3;margin-bottom:10px;opacity:0;padding:5px 7.5px;pointer-events:none;position:absolute;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;white-space:nowrap;z-index:2}.plyr__tooltip::before{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(255,255,255,.9);bottom:-4px;content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,.plyr .plyr__control:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(1)}.plyr .plyr__control:hover .plyr__tooltip{z-index:3}.plyr__controls>.plyr__control:first-child .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip{left:0;transform:translate(0,10px) scale(.8);transform-origin:0 100%}.plyr__controls>.plyr__control:first-child .plyr__tooltip::before,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip::before{left:16px}.plyr__controls>.plyr__control:last-child .plyr__tooltip{left:auto;right:0;transform:translate(0,10px) scale(.8);transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{left:auto;right:16px;transform:translateX(50%)}.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1)}.plyr--video{background:#000;overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;border-radius:inherit;overflow:hidden;position:relative;z-index:0}.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%}.plyr__video-embed iframe,.plyr__video-wrapper--fixed-ratio video{border:0;height:100%;left:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;transform:translateY(-38.28125%)}.plyr__progress{left:6.5px;margin-right:13px;position:relative}.plyr__progress input[type=range],.plyr__progress__buffer{margin-left:-6.5px;margin-right:-6.5px;width:calc(100% + 13px)}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress .plyr__tooltip{font-size:14px;left:0}.plyr__progress__buffer{-webkit-appearance:none;background:0 0;border:0;border-radius:100px;height:5px;left:0;margin-top:-2.5px;padding:0;position:absolute;top:50%}.plyr__progress__buffer::-webkit-progress-bar{background:0 0}.plyr__progress__buffer::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:5px;transition:width .2s ease}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:5px;transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width .2s ease}.plyr--video .plyr__progress__buffer{box-shadow:0 1px 1px rgba(0,0,0,.15);color:rgba(255,255,255,.25)}.plyr--audio .plyr__progress__buffer{color:rgba(193,201,209,.66)}.plyr--loading .plyr__progress__buffer{animation:plyr-progress 1s linear infinite;background-image:linear-gradient(-45deg,rgba(35,41,47,.6) 25%,transparent 25%,transparent 50%,rgba(35,41,47,.6) 50%,rgba(35,41,47,.6) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;color:transparent}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,.25)}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,201,209,.66)}.plyr__volume{align-items:center;display:flex;flex:1;position:relative}.plyr__volume input[type=range]{margin-left:5px;position:relative;z-index:2}@media (min-width:480px){.plyr__volume{max-width:90px}}@media (min-width:768px){.plyr__volume{max-width:110px}}.plyr--is-ios .plyr__volume{display:none!important}.plyr--is-ios.plyr--vimeo [data-plyr=mute]{display:none!important}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:fullscreen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}.plyr:fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px}.plyr:-ms-fullscreen .plyr__captions{font-size:21px}.plyr:fullscreen .plyr__captions{font-size:21px}}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px}}.plyr:-moz-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-moz-full-screen video{height:100%}.plyr:-moz-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-moz-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-moz-full-screen .plyr__captions{font-size:21px}}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-ms-fullscreen .plyr__captions{font-size:21px}}.plyr--fullscreen-fallback{background:#000;border-radius:0!important;height:100%;margin:0;width:100%;bottom:0;left:0;position:fixed;right:0;top:0;z-index:10000000}.plyr--fullscreen-fallback video{height:100%}.plyr--fullscreen-fallback .plyr__video-wrapper{height:100%;position:static}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen{display:block}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr--fullscreen-fallback.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px}}.plyr__ads{border-radius:inherit;bottom:0;cursor:pointer;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.plyr__ads>div,.plyr__ads>div iframe{height:100%;position:absolute;width:100%}.plyr__ads::after{background:rgba(35,41,47,.8);border-radius:2px;bottom:10px;color:#fff;content:attr(data-badge-text);font-size:11px;padding:2px 6px;pointer-events:none;position:absolute;right:10px;z-index:3}.plyr__ads::after:empty{display:none}.plyr__cues{background:currentColor;display:block;height:5px;left:0;margin:-2.5px 0 0;opacity:.8;position:absolute;top:50%;width:3px;z-index:3}.plyr__preview-thumb{background-color:rgba(255,255,255,.9);border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);margin-bottom:10px;opacity:0;padding:3px;pointer-events:none;position:absolute;transform:translate(0,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;z-index:2}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0,0) scale(1)}.plyr__preview-thumb::before{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(255,255,255,.9);bottom:-4px;content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr__preview-thumb__image-container{background:#c1c9d1;border-radius:2px;overflow:hidden;position:relative;z-index:0}.plyr__preview-thumb__image-container img{height:100%;left:0;max-height:none;max-width:none;position:absolute;top:0;width:100%}.plyr__preview-thumb__time-container{bottom:6px;left:0;position:absolute;right:0;white-space:nowrap;z-index:3}.plyr__preview-thumb__time-container span{background-color:rgba(0,0,0,.55);border-radius:2px;color:#fff;font-size:14px;padding:3px 6px}.plyr__preview-scrubbing{bottom:0;filter:blur(1px);height:100%;left:0;margin:auto;opacity:0;overflow:hidden;position:absolute;right:0;top:0;transition:opacity .3s ease;width:100%;z-index:1}.plyr__preview-scrubbing--is-shown{opacity:1}.plyr__preview-scrubbing img{height:100%;left:0;max-height:none;max-width:none;object-fit:contain;position:absolute;top:0;width:100%}.plyr--no-transition{transition:none!important}.plyr__sr-only{clip:rect(1px,1px,1px,1px);overflow:hidden;border:0!important;height:1px!important;padding:0!important;position:absolute!important;width:1px!important}.plyr [hidden]{display:none!important}

/* https://github.com/sampotts/plyr/issues/662 */

.plyr--full-ui input[type=range] {
  color: rgba(0, 179, 255, 1.00);
}

.plyr__control--overlaid {
  background: rgba(0, 179, 255, 0.50);
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: rgba(0, 179, 255, 1.00);
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.50);
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: rgba(0, 179, 255, 1.00);
}




#uTubestacks_in_8565 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8565 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





#uTubestacks_in_8562 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8562 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





#uTubestacks_in_8852 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8852 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





#uTubestacks_in_8568 {
	position: relative;
	
	
	
	
	padding-bottom: 56.25%;
	
	
	
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_8568 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #000000;
	border: none;
	box-shadow: none;
	outline: none;
}





/* Start Responsive Shim stack CSS code */.stacks_in_9593shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9593shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9593shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9594shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9594shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9594shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9595shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9595shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9595shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9596shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9596shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9596shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8586shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8586shim{	padding-top: 20px;}}@media all and (max-width: 414px) {.stacks_in_8586shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9597shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9597shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9597shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9598shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9598shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9598shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9599shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_9599shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_9599shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8592shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_8592shim{	padding-top: 15px;}}@media all and (max-width: 414px) {.stacks_in_8592shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8593shim{	padding-top: 5%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8594shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_8594shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_8594shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8594 {
	border: solid rgba(60, 85, 76, 1.00);
	border-width: 2px 0px 0px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8597shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8598shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */
.stacks_in_8604 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

#stacks_in_8614 #stacks_in_8614printablestack
{
	color:#6E2326;
	padding:10px 10px 50px 10px;
	border:1px solid #E6E6E6;
	background-color:#E6E6E6;
	
}

#stacks_in_8614 #print_btn_container
{
	height:30px;
	display:inline-block;
	float:right;
	
	padding:5px;
	-webkit-border-radius: 5px;
}

#stacks_in_8614 #tick_container
{
	height:30px;
	display:inline-block;
	float:right;
	padding:5px;
	visibility:hidden;
}

#stacks_in_8614 #stacks_in_8614printbtn
{
	cursor:pointer;
}




#stacks_in_8627 {
	padding: 0px 5px 0px 5px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_8632 {
	width: 100%;
	clear: both;
	padding-top: 25px;
	padding-bottom: 25px;
}
#simpleDivider_stacks_in_8632 .theDivider1,
#simpleDivider_stacks_in_8632 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_8632 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_8632.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_8632.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_8632 .theDivider2 {
	height: 1px;
}
#simpleDivider_stacks_in_8632.transparentOff .theDivider2 {
	background-color: #2E2E2E;
}
#simpleDivider_stacks_in_8632.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_8632.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_8632.bgImageOn .theDivider1 img {
	display: block;
}


/* Start Responsive Shim stack CSS code */.stacks_in_8636shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8636shim{	padding-top: 35px;}}@media all and (max-width: 480px) {.stacks_in_8636shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code */
/* Start Responsive Shim stack CSS code */.stacks_in_8642shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8642shim{	padding-top: 35px;}}@media all and (max-width: 480px) {.stacks_in_8642shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8649shim{	padding-top: 30px;}@media all and (max-width: 768px) {.stacks_in_8649shim{	padding-top: 35px;}}@media all and (max-width: 480px) {.stacks_in_8649shim{	padding-top: 25px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8650shim{	padding-top: 6%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8651shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code *//* Start Final Word stack CSS code */#stacks_in_8652finalword-modal {	display: none;	position: fixed;	top:0;	right: 0;	bottom: 0;	left: 0;	background-color: rgba(0, 0, 0, 0.70) !important;	cursor: pointer;	-webkit-animation: fadein 0.5s;	animation: fadein 0.5s;	z-index: 101001;}.stacks_in_8652table{	display: table;	width: 100%;	height: 100%;}.stacks_in_8652cell{	display: table-cell;	vertical-align: middle;	padding: 10px;}#stacks_in_8652finalword-modal .stacks_in_8652modal {	-webkit-animation: popin 0.3s;	animation: popin 0.3s;}#stacks_in_8652finalword-modal .stacks_in_8652modal {	display: block;	max-width: 600px;	background-color: rgba(90, 127, 202, 1.00);	z-index: 1;	position: relative;	margin: auto;	border-radius: 4px;		cursor: default;		-webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.75);	-moz-box-shadow:    0px 1px 10px 0px rgba(0, 0, 0, 0.75);	box-shadow:         0px 1px 10px 0px rgba(0, 0, 0, 0.75);	overflow: hidden;}#stacks_in_8652finalword-modal .stacks_in_8652modal-title {  font-size: 150%;  font-weight: bold;  background-color: rgba(90, 127, 202, 1.00);  color: rgba(58, 81, 139, 1.00);  padding: 10px;  margin: 0;  text-align: center;    	display:none;    }.stacks_in_8652modal-body {  padding: 20px 35px;}#stacks_in_8652finalword-modal .stacks_in_8652modal-footer {  position: relative;  bottom: 20px;  text-align: center;  width: 90%;  margin: 20px auto 0 auto;  cursor: pointer;  display: block;  color: rgba(255, 255, 255, 1.00) !important;  background: rgba(90, 127, 202, 1.00);  padding: 2px 10px 2px 10px;  border-radius: 3px;    }#stacks_in_8652finalword-modal .stacks_in_8652modal-footer:hover {  color: rgba(127, 127, 127, 1.00) !important;}@-webkit-keyframes fadein {  0% {    opacity: 0;  }  100% {    opacity: 1;  }}@-ms-keyframes fadein {  0% {    opacity: 0;  }  100% {    opacity: 1;  }}@keyframes fadein {  0% {    opacity: 0;  }  100% {    opacity: 1;  }}@-webkit-keyframes popin {  0% {    -webkit-transform: scale(0);    transform: scale(0);    opacity: 0;  }  85% {    -webkit-transform: scale(1.05);    transform: scale(1.05);    opacity: 1;  }  100% {    -webkit-transform: scale(1);    transform: scale(1);    opacity: 1;  }}@-ms-keyframes popin {  0% {    -ms-transform: scale(0);    transform: scale(0);    opacity: 0;  }  85% {    -ms-transform: scale(1.05);    transform: scale(1.05);    opacity: 1;  }  100% {    -ms-transform: scale(1);    transform: scale(1);    opacity: 1;  }}@keyframes popin {  0% {    -webkit-transform: scale(0);    -ms-transform: scale(0);    transform: scale(0);    opacity: 0;  }  85% {    -webkit-transform: scale(1.05);    -ms-transform: scale(1.05);    transform: scale(1.05);    opacity: 1;  }  100% {    -webkit-transform: scale(1);    -ms-transform: scale(1);    transform: scale(1);    opacity: 1;  }}/* End Final Word stack CSS code */
.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_8656_20 {
	height: 30.00px;
}




















@media print {
	#spacerStackstacks_in_8656_20 {
		display: none !important;
	}
}
/* Start Responsive Shim stack CSS code */.stacks_in_8661shim{	padding-top: 40px;}@media all and (max-width: 768px) {.stacks_in_8661shim{	padding-top: 40px;}}@media all and (max-width: 480px) {.stacks_in_8661shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8680shim{	padding-top: 40px;}@media all and (max-width: 768px) {.stacks_in_8680shim{	padding-top: 40px;}}@media all and (max-width: 480px) {.stacks_in_8680shim{	padding-top: 40px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8681shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_8681shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_8681shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8681 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8684shim{	padding-top: 7%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8685shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code */.facebook, .facebook:hover{background-color:rgba(101, 101, 101, 1.00) ;}
.twitter, .twitter:hover{background-color:rgba(101, 101, 101, 1.00) ;}
.youtube, .youtube:hover{background-color:rgba(101, 101, 101, 1.00) ;}
.social-button{width:5rem ;}  
/* Start Responsive Shim stack CSS code */.stacks_in_8703shim{	padding-top: 20px;}@media all and (max-width: 768px) {.stacks_in_8703shim{	padding-top: 20px;}}@media all and (max-width: 480px) {.stacks_in_8703shim{	padding-top: 20px;}}/* End Responsive Shim stack CSS code */.tardis-time.stacks_in_8704{text-align:center;font-size:0.85rem;line-height:1.2em;color:#FFFFFF;}

#stacks_in_8704 {
	margin: 5px 0px 0px 0px;
	padding: 15px 15px 0px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8705shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_8705shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_8705shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8710shim{	padding-top: 10px;}@media all and (max-width: 768px) {.stacks_in_8710shim{	padding-top: 10px;}}@media all and (max-width: 480px) {.stacks_in_8710shim{	padding-top: 10px;}}/* End Responsive Shim stack CSS code */.tardis-time.stacks_in_8711{text-align:left;font-size:1.00rem;line-height:1.2em;color:#FFFFFF;}

#stacks_in_8711 {
	padding: 7px 0px 0px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8712shim{	padding-top: 15px;}@media all and (max-width: 768px) {.stacks_in_8712shim{	padding-top: 15px;}}@media all and (max-width: 480px) {.stacks_in_8712shim{	padding-top: 15px;}}/* End Responsive Shim stack CSS code */.facebook, .facebook:hover{background-color:rgba(101, 101, 101, 1.00) ;}
.twitter, .twitter:hover{background-color:rgba(101, 101, 101, 1.00) ;}
.youtube, .youtube:hover{background-color:rgba(101, 101, 101, 1.00) ;}
.social-button{width:5rem ;}  
/* Start Responsive Shim stack CSS code */.stacks_in_8728shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8729shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8730shim{	padding-top: 1px;}@media all and (max-width: 768px) {.stacks_in_8730shim{	padding-top: 1px;}}@media all and (max-width: 300px) {.stacks_in_8730shim{	padding-top: 1px;}}/* End Responsive Shim stack CSS code */
#stacks_in_8730 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8735shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */
#stacks_in_8736 {
	padding: 20px 0px 0px 0px;
}
.stacks_in_8736_7 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}


#stacks_in_8736_159 {
	font-size: 90%;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8736_205shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8736_170shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code */
/* Start Responsive Shim stack CSS code */.stacks_in_8737shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.0.0
 * Simple Divider is a Free Stack for RapidWeaver allowing easy drag-and-drop of a simple divider with minimal customization options.
 */

#simpleDivider_stacks_in_8739 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_8739 .theDivider1, #simpleDivider_stacks_in_8739 .theDivider2 {width: inherit}
#simpleDivider_stacks_in_8739 .theDivider1 {
	border-top: solid 1px #CCCCCC;
	border-bottom: solid 1px #FFFFFF;
}
#simpleDivider_stacks_in_8739 .theDivider2 {
	height: 1px;
	background-color: #9D896C;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8743shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */
#stacks_in_8745 {
	font-size: 85%;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8746shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_8747shim{	padding-top: 1%;}/* End Responsive Shim stack CSS code */