
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}



#stacks_in_122 {
	margin:  11px;
}
/*
1.5.0.1
- hotfix: display bug with dropdown items in edit mode
*/
#stacks_in_141 {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#stacks_in_141 > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline-style:none;
  box-shadow:none;
  border-color:transparent;
}

#stacks_in_141 .clean-menu-extra {
  display: none;
}
#clean-menu_stacks_in_141 .clean-menu-logo .cm-logo-right {
  white-space: nowrap;
}
#clean-menu_stacks_in_141 .clean-menu-logo .cm-logo-right * {
  margin: 0;
  display: flex;
  align-self: center;
}
#clean-menu-full_stacks_in_141.cm-full-menu li > a:hover,
#clean-menu_stacks_in_141 li > a:hover {
  text-decoration: none;
}

#stacks_in_141 nav {
  border: 0px solid transparent;
}
#clean-menu_stacks_in_141 {
  max-width: 1320px;
  box-sizing: border-box;
  padding: 0px 20px;
  
  margin: 0 auto;
  
}
/* compatability fixes */
#clean-menu_stacks_in_141 ul {
  margin: 0;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
#clean-menu_stacks_in_141 ul li > a:after,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a:after {
  align-self: center;
}
/* --- */
#clean-menu-full_stacks_in_141.cm-full-menu,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul {
  position: absolute;
  top: 0;
  left: 0;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul {
  text-decoration: none;
  list-style: none;
  margin: 0;
  display: block;
  padding: 0px 0px;
  background: transparent;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul {
  padding: 6px 0px;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul li,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li {
  display: block;
  margin: 0;
  padding: 0;
  float: none;
  background: transparent;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a {
  padding: 5px 20px;
  margin: 0;
  line-height: 1;
  background: transparent;
  display: inline-block;
}
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li.clean-menu-dropdown > ul {
  padding: 6px 0px;
}
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a {
  padding: 6px 20px;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul > li > a {
  font-weight: bold;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul > li > .cm-custom-content {
  padding: 4px 20px 4px 20px;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul ul > li > .cm-custom-content {
  padding: 4px 20px 4px 30px;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul > li.cm-grouped-item > .cm-custom-content  {
  padding: 4px 20px 4px 0px;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul ul > li > a,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul ul {
  padding: 6px 20px;
  font-weight: normal;
  line-height: 1;
  height: auto;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul > div,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul > div {
  padding: 20px;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul > div a,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul > div a {
  display: block;
  padding: 0;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul ul,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul ul {
  display: block;
  padding: 0px 0px 10px 10px;
  margin: 0;
}
#clean-menu-full_stacks_in_141.cm-full-menu,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: -webkit-transform 300ms ease, opacity 300ms ease;
  transition: -webkit-transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease, opacity 300ms ease;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  min-width: 250px;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}
#clean-menu-full_stacks_in_141.cm-full-menu.clean-menu-active {
  -webkit-transform: translate(0px, 5px);
  transform: translate(0px, 5px);
  pointer-events: all;
  opacity: 1;
}
#clean-menu-full_stacks_in_141.cm-full-menu {
  height: 0;
  overflow: hidden;
}
#clean-menu-full_stacks_in_141.cm-full-menu.clean-menu-active {
  height: auto;
}



#clean-menu-full_stacks_in_141.cm-full-menu.clean-menu-active ul {
  pointer-events: all;
  opacity: 1;
}
#clean-menu-full_stacks_in_141 ul {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-transition: opacity 450ms ease;
  transition: opacity 450ms ease;
}
#clean-menu-full_stacks_in_141.clean-menu-active ul {
  opacity: 1;
  pointer-events: all;
}
.cm-toggle {
  width: 30px;
  height: 28px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.cm-toggle span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #333;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.cm-toggle span:nth-child(1) {
  top: 0px;
}
.cm-toggle span:nth-child(2),.cm-toggle span:nth-child(3) {
  top: 10px;
}
.cm-toggle span:nth-child(4) {
  top: 20px;
}
.cm-toggle.open span:nth-child(1) {
  opacity: 0;
}
.cm-toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cm-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cm-toggle.open span:nth-child(4) {
  opacity: 0;
}

#clean-menu_stacks_in_141 .cm-toggle span {
  height: 6px;
  width: 6px;
  border-radius: 50%;
}
#clean-menu_stacks_in_141 .cm-toggle span:nth-child(1) {
  top: 10px;
  left: 1px;
}
#clean-menu_stacks_in_141 .cm-toggle span:nth-child(2),#clean-menu_stacks_in_141 .cm-toggle span:nth-child(3) {
  top: 10px;
  left: 12px;
}
#clean-menu_stacks_in_141 .cm-toggle span:nth-child(4) {
  top: 10px;
  left: 23px;
}
#clean-menu_stacks_in_141 .cm-toggle.open span:nth-child(2) {
  width: 100%;
  left: 0;
  top: 11px;
  border-radius: 2px;
  height: 4px;
}
#clean-menu_stacks_in_141 .cm-toggle.open span:nth-child(3) {
  width: 100%;
  left: 0;
  top: 11px;

  border-radius: 2px;
  height: 4px;
}



#clean-menu_stacks_in_141 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#clean-menu_stacks_in_141 > div {
  align-self: center;
}
#clean-menu_stacks_in_141 .clean-menu-full .cm-menu-toggle {
  width: 30px;
  height: 25px;
  box-sizing: border-box;
  padding: 0;
/*  border: 1px solid #000;*/
  border-radius: 3px;
  cursor: pointer;
}
#clean-menu_stacks_in_141 > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 10px 0;
  flex-grow: 1;
  transition: margin 300ms ease;
}
#clean-menu_stacks_in_141 .clean-menu-logo {
  max-width: 250px;
  min-width: 250px;
  margin: 0;
}
#clean-menu_stacks_in_141 .clean-menu-logo .cm-logo-wrap {
  max-width: 250px;
  min-width: 250px;
  -webkit-box-flex: none;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
}
#clean-menu_stacks_in_141 .clean-menu-logo a {
  text-decoration: none;
  display: block;
}
/*
div[tag="slice"] > .mez > #stacks_in_141.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-logo {
  width: 300px; max-width: 300px;
}
*/
#clean-menu_stacks_in_141 .clean-menu-logo > div > div {
  align-self: center;
}
#clean-menu_stacks_in_141 .clean-menu-logo .cm-logo-left {
  max-width: 73px;
  
  display: none;
  
  
  max-width: 9999px;
  
  margin: 10px 0;
}
div[tag="slice"] > .mez > #stacks_in_141.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-logo .cm-logo-left  {
  max-width: 128px;
  
  max-width: 9999px;
  
}
#clean-menu_stacks_in_141 .clean-menu-logo .cm-logo-right {
  
  display: none;
  
  margin: 10px 0;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  
  
  display: -ms-flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  
  -ms-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  text-decoration: none;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul > div {
  display: none;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul ul {
  display: none;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li {
  margin: 0 15px;
  align-self: center;
  line-height: 1;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li:first-child {
  margin-left: 0;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li:last-child {
  margin-right: 0;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li:last-child.cm-group-True {
  margin: 0;
}


div[tag="slice"] > .mez > #stacks_in_141.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-top-level ul li {
  margin: 0 0 0 15px;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a,
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a:visited {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.40);
  font-size: 22px;
  
  font-weight: bold;
  
  line-height: 25px;
  align-items: center;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a {
  font-size: 22px;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a,
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a {
  font-family: inherit;
}
#clean-menu-full_stacks_in_141.cm-full-menu > ul > li > a {
  
  font-weight: bold;
  
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a svg,
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a svg {
  fill: rgba(0, 0, 0, 0.40);
  align-self: center;
  vertical-align: middle;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a{
  transition: color 150ms ease;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-grouped-item,
#clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li.cm-grouped-item {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li.cm-grouped-item {
  padding: 5px 20px;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-grouped-item > a,
#clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item > a {
  display: inline-block;
  margin-left: 8px;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-grouped-item > a {
  padding: 0;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-grouped-item > a:first-child,
#clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item > a:first-child {
  margin-left: 0px;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item > a {
  padding: 4px 30px 4px 0;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a ion-icon, #clean-menu_stacks_in_141 .clean-menu-top-level ul li > a i,
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a ion-icon, #clean-menu-full_stacks_in_141.cm-full-menu ul li > a i {
  font-size: 25px;
  line-height: 25px;
  
  font-size: 22px;
  line-height: 22px;
  

}
#stacks_in_141 li > a svg,
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a svg,
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a svg {
  
  width: 22px;
  height: 22px;
  
}

#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a:hover {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.20);
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a:hover svg,
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a:hover svg {
  fill: rgba(0, 0, 0, 0.20);
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a.cm-heading {
  pointer-events: none;
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-current > a {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.60);
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-current > a svg,
#clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-current > a svg {
  fill: rgba(0, 0, 0, 0.60);
}
#clean-menu_stacks_in_141 .cm-toggle span {
  background: #000000;
}
#clean-menu_stacks_in_141 h1, #clean-menu_stacks_in_141 h2, #clean-menu_stacks_in_141 h3, #clean-menu_stacks_in_141 h4, #clean-menu_stacks_in_141 h5, #clean-menu_stacks_in_141 h6, #clean-menu_stacks_in_141 .layouts-text, #clean-menu_stacks_in_141 p {
  color: rgba(0, 0, 0, 0.60);
  font-size: inherit;
  margin: 0;
}
#clean-menu-full_stacks_in_141.cm-full-menu,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul {
  background: rgba(255, 255, 255, 1.00);
}
#clean-menu-full_stacks_in_141.cm-full-menu > ul > li,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.15)
}
#clean-menu-full_stacks_in_141.cm-full-menu > ul > li:last-child,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul > li:last-child {
  border-bottom: 0px solid transparent;
}
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a,
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a:visited,
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a:visited,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a svg,
#clean-menu-full_stacks_in_141.cm-full-menu ul ul li:before {
  color: rgba(0, 0, 0, 0.40);
  fill: rgba(0, 0, 0, 0.40);
}
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a:hover,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a:hover,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a:hover svg {
  color: rgba(0, 0, 0, 0.20);
  fill:  rgba(0, 0, 0, 0.20);
}
/* #clean-menu-full_stacks_in_141.cm-full-menu ul li > a.cm-heading:hover,
#clean-menu-full_stacks_in_141.cm-full-menu ul li > a.cm-heading:hover svg,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a.cm-heading:hover {
  color: rgba(0, 0, 0, 0.40);
  cursor: default;
} */
#clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-current > a,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li.cm-current > a,
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li.cm-current > a svg {
  color: rgba(0, 0, 0, 0.60);
  fill:  rgba(0, 0, 0, 0.60);
}
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.parent:after {
  border-color: rgba(0, 0, 0, 0.40);
}
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.parent:hover:after {
  border-color: rgba(0, 0, 0, 0.20);
}
/* #clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.cm-heading.parent:hover:after {
  border-color: rgba(0, 0, 0, 0.40);
} */
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.parent.cm-current:after {
  border-color: rgba(0, 0, 0, 0.60);
}
.disable-parents #clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a.parent:hover:after,
.disable-parents #clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul li > a.parent:hover,
#clean-menu-full_stacks_in_141.cm-full-menu.disable-parents  ul li > a.parent:hover {
  color: rgba(0, 0, 0, 0.40);
  border-color: rgba(0, 0, 0, 0.40);
}
.disable-parents #clean-menu_stacks_in_141 .clean-menu-top-level ul li > a.parent:hover,
.disable-parents #clean-menu_stacks_in_141 .clean-menu-top-level ul li > a.parent:hover:after {
  color: rgba(0, 0, 0, 0.40);
  border-color: rgba(0, 0, 0, 0.40);
}







#clean-menu_stacks_in_141 .clean-menu-logo,
#clean-menu_stacks_in_141 .clean-menu-full {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
}


#clean-menu-full_stacks_in_141.cm-full-menu > ul > li {
  border-bottom: 1px solid rgba(0,0,0,0.15)
}
#clean-menu-full_stacks_in_141.cm-full-menu > ul > li:last-child {
  border-bottom: 0px solid transparent;
}
#clean-menu-full_stacks_in_141.cm-full-menu {

}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a,
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a:visited {
  color: rgba(0,0,0,.6);
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a svg {
  fill: rgba(0,0,0,.6);
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a:hover {
  color: rgba(0,0,0,.4);
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li > a:hover svg {
  fill: rgba(0,0,0,.4);
}
/* #clean-menu_stacks_in_141 .clean-menu-top-level ul li > a.cm-heading:hover {
  color: rgba(0,0,0,.6);
  cursor: default;
} */
#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-current > a {
  color: rgba(0,0,0,.8);
}
#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-current > a svg {
  fill: rgba(0,0,0,.8);
}
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.parent:after {
  border-color: rgba(0,0,0,.6);
}
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.parent:hover:after {
  border-color: rgba(0,0,0,.4);
}
/* #clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.cm-heading.parent:hover:after {
  border-color: rgba(0,0,0,.6);
} */
#clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.parent.cm-current:after {
  border-color: rgba(0,0,0,.8);
}
#clean-menu_stacks_in_141 .cm-toggle span {
  background: rgba(0,0,0,8);
}
#clean-menu_stacks_in_141 h1, #clean-menu_stacks_in_141 h2, #clean-menu_stacks_in_141 h3, #clean-menu_stacks_in_141 h4, #clean-menu_stacks_in_141 h5, #clean-menu_stacks_in_141 h6, #clean-menu_stacks_in_141 .layouts-text, #clean-menu_stacks_in_141 p {
  color: rgba(0,0,0,8);
}
.disable-parents #clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.parent:hover,
.disable-parents #clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > a.parent:hover:after {
  color: rgba(0,0,0,.6);
  border-color: rgba(0,0,0,.6);
}




@media all and (min-width: 771px) {
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_141.cm-full-menu ul li {
    border-width: 0;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_141 {
    padding: 10px 0px;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-hide-dropdown-menu,
  body:not(.cm-mobile-example) #clean-menu_stacks_in_141 ul li.cm-hide-menu {
    display: none;
  }
  
  #clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul.cm-wide {
    display: grid;
  }
  #clean-menu_stacks_in_141 .clean-menu-top-level > ul > li > ul.cm-wide > li {
    text-align: left;
    align-self: flex-start;
  }
}

@media all and (max-width: 770px) {
  
  #clean-menu_stacks_in_141.clean-menu {
    flex-wrap: wrap-reverse;
  }
  #clean-menu_stacks_in_141 > div  {
    
    
  }
  
  #clean-menu_stacks_in_141.clean-menu {
    gap: 0 16px;
  }
  #clean-menu-full_stacks_in_141 {
    min-width: 300px;
  }
  #clean-menu_stacks_in_141 .clean-menu-full {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 10px 0;
  }
  #clean-menu_stacks_in_141 > div:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #clean-menu_stacks_in_141 .clean-menu-full .cm-menu-toggle {
    display: block;
  }
  #clean-menu_stacks_in_141 .clean-menu-top-level {
    display: none;
  }
  
  
  #clean-menu-full_stacks_in_141.cm-full-menu ul li {
    display: block;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul {
    padding: 12px 0px;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul > li > .cm-custom-content {
    padding: 4px 24px 4px 24px;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul ul > li > .cm-custom-content {
    padding: 4px 24px 4px 34px;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul > li.cm-grouped-item > .cm-custom-content  {
    padding: 4px 24px 4px 0px;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item{
    padding: 4px 24px;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul li > a {
    font-size: calc(22px + 2 );
    line-height: calc(22px + 2 );
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul ul > li > a {
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item > a {
    width: auto;
  }
  #clean-menu-full_stacks_in_141.cm-full-menu {
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  #clean-menu-full_stacks_in_141.cm-full-menu.clean-menu-active {
    -webkit-transform: translate(0px, 5px);
    transform: translate(0px, 5px);
  }
  #clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item > a {
    padding: 8px 30px 8px 0;
  }
}






.cm-mobile-example #clean-menu-full_stacks_in_141 {
  min-width: 300px;
}
.cm-mobile-example #clean-menu_stacks_in_141 .clean-menu-full {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cm-mobile-example #clean-menu_stacks_in_141 > div:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cm-mobile-example #clean-menu_stacks_in_141 .clean-menu-full .cm-menu-toggle {
  display: block;
}
.cm-mobile-example #clean-menu_stacks_in_141 .clean-menu-top-level {
  display: none;
}
.cm-mobile-example #clean-menu-full_stacks_in_141.cm-full-menu ul li {
  display: block;
}
.cm-mobile-example #clean-menu-full_stacks_in_141.cm-full-menu ul li > a {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}
.cm-mobile-example #clean-menu-full_stacks_in_141.cm-full-menu ul ul > li > a {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}
.cm-mobile-example #clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item > a {
  width: auto;
}
.cm-mobile-example #clean-menu-full_stacks_in_141.cm-full-menu {
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}
.cm-mobile-example #clean-menu-full_stacks_in_141.cm-full-menu.clean-menu-active {
  -webkit-transform: translate(0px, 5px);
  transform: translate(0px, 5px);
}
.cm-mobile-example #clean-menu-full_stacks_in_141.cm-full-menu ul li.cm-grouped-item > a {
  padding: 8px 30px 8px 0;
}









#clean-menu_stacks_in_141 .clean-menu-top-level ul li.cm-current > a {
  text-decoration: underline;
}

#stacks_out_141 {
	width: 70%;
}




/*
*/
@font-face {
    font-family: '1ldclockmedium';
    src: url('tc-files/1ldclock-webfont.woff2') format('woff2'),
         url('tc-files/1ldclock-webfont.woff') format('woff'),
        url('tc-files/1ldclock-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*  */
/*  */
#stacks_in_38 .timed-content-progress-bar {
  display: none;
}
/*  */
#stacks_in_38,
#stacks_out_38,
#stacks_in_139 {
  overflow: visible;
  clear: both;
}
#stacks_in_38 .timed-content-number {
  box-shadow: 0px 1px 2px rgba(0,0,0,15%);
}
#stacks_in_38 .timed-content-rotate .timed-content-number {
  box-shadow: 0px 8px 10px 0px rgba(0,0,0,30%);
}
#stacks_in_38 .timed-content-rotate.rotate-smooth .timed-content-number:after {
  box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,30%),
              inset 0px -5px 5px -3px rgba(0,0,0,30%);
  /*  */
  background: linear-gradient(to bottom,  rgba(0,0,0,19.994999%) 0%,rgba(0,0,0,4.995000%) 20%,rgba(0,0,0,0%) 40%,rgba(0,0,0,4.995000%) 60%,rgba(0,0,0,15%) 80%,rgba(0,0,0,19.994999%) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#stacks_in_38 .timed-content-fold .timed-content-number {
  box-shadow: 0px 2px 3px rgba(0,0,0,0.5),
              inset 0px 0px 5px rgba(0,0,0,0.5);
}
#stacks_in_38 .tc-dark-shadows.timed-content-fold .timed-content-number {
  box-shadow: 0px 2px 3px rgba(0,0,0,0.5),
              inset 0px 0px 5px rgba(0,0,0,0.5);
}
#stacks_in_38 .timed-content-inline .timed-content-number {
    box-shadow: none;
}
#stacks_in_38 .timed-content-countdown-wrap {
  color: rgba(17, 17, 17, 1.00);
  padding: 24px 0px;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_38 .timed-content-countdown-wrap * {
  font-family:  "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
#stacks_in_38 .timed-content-digital .timed-content-number div span {
  font-family: '1ldclockmedium';
}
#stacks_in_38 .timed-content-digital .timed-content-number div span:before {
    content: "88";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
    color: rgba(17, 17, 17, 1.00);
    opacity: 0.2;
}
#stacks_in_38 .timed-content-digital .tc-digit-padding .timed-content-number div span:before {
    content: "888888888888888888888";
    overflow: hidden;
    left: 12px;
    right: 12px;
    width: auto;
    top: 0;
}
#stacks_in_38 .timed-content-digital .timed-content-number div span {
  font-family: "Andale Mono";
}
#stacks_in_38 .timed-content-digital .timed-content-number div span:before,
#stacks_in_38 .timed-content-digital .tc-digit-padding .timed-content-number div span:before {
    content: "";
}

#stacks_in_38 .timed-content-number,
#stacks_in_38 .timed-content-number div,
#stacks_in_38 .timed-content-fold .timed-content-number > div:after,
#stacks_in_38 .timed-content-fold .timed-content-number > div:before,
#stacks_in_38 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
  background-color: #F3F3F3;
  color: rgba(17, 17, 17, 1.00);
  border-radius:  6px;
}
#stacks_in_38 .timed-content-number div span {
  color: rgba(17, 17, 17, 1.00);
}
#stacks_in_38 .timed-content-rotate .timed-content-number > div.state-after,
#stacks_in_38 .timed-content-rotate .timed-content-number > div.state-before {
  background-color: #F3F3F3;
  border-radius: 0px;
}
#stacks_in_38 .timed-content-fold .timed-content-number > div {
  border-radius:  6px 6px 0px 0px;
}
#stacks_in_38 .timed-content-countdown {
  grid-gap: 0px;
  grid-template-columns: repeat(auto-fit, minmax(50px, max-content));
  /*  */
}
#stacks_in_38 .timed-content-part div.timed-content-title {
  font-size: 14px;
}
#stacks_in_38 .timed-content-number,
#stacks_in_38 .timed-content-number div,
#stacks_in_38 .timed-content-number div span,
#stacks_in_38 .timed-content-fold .timed-content-number > div:after,
#stacks_in_38 .timed-content-fold .timed-content-number > div:before,
#stacks_in_38 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
  width: auto;
  min-width: 50px;
  height: 37.500000px;
  line-height: 36.250000px; /* Adjusted for font */
  font-size: 31.250000px;
  font-weight: normal;
  letter-spacing: 0px;
}
#stacks_in_38 .timed-content-digital .timed-content-number div span {
  line-height: 37.500000px;
  font-size: 37.500000px;
  color:  rgba(67, 67, 67, 1.00);
  text-shadow: 0px 0px 5px rgba(17, 17, 17, 1.00);
}
#stacks_in_38 .timed-content-number div span {
  min-width: 0px;
}
#stacks_in_38 .timed-content-number > div {
  padding: 0px 0px;
  box-sizing: border-box;
  overflow: hidden;
}
#stacks_in_38 .tc-digit-padding .timed-content-number > div {
  padding: 0px 12px;
}
#stacks_in_38 .tc-digit-padding .timed-content-number-5 {
  position: relative;
}
#stacks_in_38 .timed-content-part:before {
  background-color: rgba(0, 0, 0, 0.00);
  height: 37.500000px;
}
#stacks_in_38 .timed-content-number:after,
#stacks_in_38 .timed-content-number:before {
    width: 5px;
    height: 5px;
    background-color: rgba(17, 17, 17, 1.00);
    right: -10px;
    border-radius: 0px;
}

/*  */


#stacks_in_38 .year .timed-content-number:before,
#stacks_in_38 .month .timed-content-number:before,
#stacks_in_38 .day .timed-content-number:before,
#stacks_in_38 .year .timed-content-number:after,
#stacks_in_38 .month .timed-content-number:after,
#stacks_in_38 .day .timed-content-number:after,
#stacks_in_38 .second .timed-content-number:before,
#stacks_in_38 .second .timed-content-number:after,
#stacks_in_38 .dayofweek .timed-content-number:before,
#stacks_in_38 .dayofweek .timed-content-number:after {
  display: none;
}
/*  */
#stacks_in_38 .timed-content-part {
  display: flex !important;
}
#stacks_in_38 .timed-content-part:after {
  content: "";
  background-color: transparent;
    color: rgba(17, 17, 17, 1.00);
    width: auto;
    position: relative;
    font-size: 31.250000px;
    margin-left: 15px;
    height: 37.500000px;
    line-height: 37.500000px;
    margin: 0px 15px;
}
#stacks_in_38 .hour:after,
#stacks_in_38 .minute:after,
#stacks_in_38 .second:after {
  margin-left: 0px;
}
/*  */
/*  */
#stacks_in_38 .second:after {
  margin: 5px;
}
/*  */
/*  */
#stacks_in_38 .timed-content-part:last-child:after {
  display: none;
}
#stacks_in_38 .year:after {
  content: " ";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
}
#stacks_in_38 .month:after {
  content: "";
  /*  */
  margin-left: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
}
#stacks_in_38 .day:after {
  content: "";
  /*  */
  margin-left: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
}
#stacks_in_38 .dayofweek:after {
  content: ",";
  /*  */
  /*  */
  margin-left: 5px;
  /*  */
  /*  */
  /*  */
  /*  */
}
#stacks_in_38 .timed-content-fold .timed-content-number > div {
  height: 50%;
  min-width: 100%;
}
#stacks_in_38 .timed-content-rotate .timed-content-number div {
  background: transparent;
}
/*  */
#stacks_in_38 .timed-content-rotate .timed-content-countdown div {
   align-content: top;
   justify-content: top;
}
#stacks_in_38 .timed-content-rotate .timed-content-number div {
    display: inline-block;
    position: relative;
    margin-top: 0;
}
#stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-1 {
    top: 75.000000px;
}
#stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-2 {
    top: 37.500000px;
}
#stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-3 {
    top: 0px;
}
#stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-4 {
    top: -37.500000px;
}
#stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-5 {
    top: -75.000000px;
}
/*  */
#stacks_in_38 .timed-content-rotate .timed-content-number {
  perspective: 2000px;
  height: 75.000000px;/* double height */
}
#stacks_in_38 .timed-content-rotate .timed-content-number .state-out {
  transform: translate3D(0,-67.500000px,0) rotateX(75deg);
}
#stacks_in_38 .timed-content-rotate .timed-content-number .state-after {
  transform: translate3D(0,-37.500000px,0px) rotateX(37.5deg);
}
#stacks_in_38 .timed-content-rotate .timed-content-number .state-active {
  transform: translate3D(0,0,0px) rotateX(0deg);
}
#stacks_in_38 .timed-content-rotate .timed-content-number .state-before {
  transform: translate3D(0,37.500000px,0px) rotateX(-37.5deg);
}
#stacks_in_38 .timed-content-rotate .timed-content-number > div.state-in {
  transform: translate3D(0,67.500000px,0) rotateX(-75deg);
}
@media all and (max-width: 1000px) {
  #stacks_in_38 .timed-content-countdown {
    grid-template-columns: repeat(auto-fit, minmax(40px, max-content));
  }
  #stacks_in_38 .timed-content-part:before {
    height: 30.000000px;
  }
  #stacks_in_38 .year:after,
  #stacks_in_38 .month:after,
  #stacks_in_38 .day:after,
  #stacks_in_38 .dayofweek:after {
      font-size: 25.000000px;
      margin-left: 10px;
      height: 30.000000px;
      line-height: 30.000000px;
  }
  #stacks_in_38 .timed-content-part:after {
    margin: 0px 10px;
  }
  #stacks_in_38 .hour:after,
  #stacks_in_38 .minute:after,
  #stacks_in_38 .second:after {
    margin-left: 0px;
  }
  /*  */
  /*  */
  #stacks_in_38 .second:after {
    margin: 3px;
  }
  /*  */
  /*  */
  #stacks_in_38 .year:after {
    /*  */
    /*  */
    /*  */
    /*  */
  }
  #stacks_in_38 .month:after {
    /*  */
    /*  */
    /*  */
    /*  */
  }
  #stacks_in_38 .day:after {
    /*  */
    /*  */
    /*  */
    /*  */
  }
  #stacks_in_38 .dayofweek:after {
    /*  */
    margin-left: 3px;
    /*  */
    /*  */
    /*  */
    /*  */
  }
  #stacks_in_38 .timed-content-number,
  #stacks_in_38 .timed-content-number div,
  #stacks_in_38 .timed-content-number div span,
  #stacks_in_38 .timed-content-fold .timed-content-number > div:after,
  #stacks_in_38 .timed-content-fold .timed-content-number > div:before,
  #stacks_in_38 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
    width: auto;
    min-width: 40px;
    height: 30.000000px;
    line-height: 29.000000px; /* Adjusted for font */
    font-size: 25.000000px;
    letter-spacing: 0px;
  }
  #stacks_in_38 .timed-content-digital .timed-content-number div span {
    line-height: 30.000000px;
    font-size: 30.000000px;
  }
  #stacks_in_38 .timed-content-number:after,
  #stacks_in_38 .timed-content-number:before {
      width: 4px;
      height: 4px;
      right: -7px;
  }
  /*  */
  #stacks_in_38 .tc-digit-padding .timed-content-number > div {
    padding: 0px 6px;
  }
  #stacks_in_38 .timed-content-digital .tc-digit-padding .timed-content-number div span:before {
      left: 6px;
      right: 6px;
  }
  /*  */
  #stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-1 {
      top: 60.000000px;
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-2 {
      top: 30.000000px;
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-4 {
      top: -30.000000px;
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-5 {
      top: -60.000000px;
  }
  /*  */
  #stacks_in_38 .timed-content-rotate .timed-content-number {
    height: 60.000000px;/* double height */
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .state-out {
    transform: translate3D(0,-54.000000px,0) rotateX(75deg);
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .state-after {
    transform: translate3D(0,-30.000000px,0px) rotateX(37.5deg);
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .state-before {
    transform: translate3D(0,30.000000px,0px) rotateX(-37.5deg);
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number > div.state-in {
    transform: translate3D(0,54.000000px,0) rotateX(-75deg);
  }
}
@media all and (max-width: 600px) {
  #stacks_in_38 .timed-content-part div.timed-content-title {
    font-size: 12px;
  }
  #stacks_in_38 .year:after,
  #stacks_in_38 .month:after,
  #stacks_in_38 .day:after,
  #stacks_in_38 .dayofweek:after {
        font-size: 18.750000px;
      margin-left: 8px;
      height: 22.500000px;
      line-height: 22.500000px;
  }
  #stacks_in_38 .timed-content-part:after {
    margin: 0px 8px;
  }
  #stacks_in_38 .hour:after,
  #stacks_in_38 .minute:after,
  #stacks_in_38 .second:after {
    margin-left: 0px;
  }
  /*  */
  /*  */
  #stacks_in_38 .second:after {
    margin: 2px;
  }
  /*  */
  /*  */
  #stacks_in_38 .year:after {
    /*  */
    /*  */
    /*  */
    /*  */
  }
  #stacks_in_38 .month:after {
    /*  */
    /*  */
    /*  */
    /*  */
  }
  #stacks_in_38 .day:after {
    /*  */
    /*  */
    /*  */
    /*  */
  }
  #stacks_in_38 .dayofweek:after {
    /*  */
    margin-left: 2px;
    /*  */
    /*  */
    /*  */
    /*  */
  }
  #stacks_in_38 .timed-content-number,
  #stacks_in_38 .timed-content-number div,
  #stacks_in_38 .timed-content-fold .timed-content-number > div:after,
  #stacks_in_38 .timed-content-fold .timed-content-number > div:before,
  #stacks_in_38 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
    border-radius:  4.500000px;
  }
  #stacks_in_38 .timed-content-fold .timed-content-number > div {
    border-radius:  4.500000px 4.500000px 0px 0px;
  }
  #stacks_in_38 .timed-content-countdown {
    grid-template-columns: repeat(auto-fit, minmax(30px, max-content));
  }
  #stacks_in_38 .timed-content-part:before {
    height: 22.500000px;
  }
  #stacks_in_38 .timed-content-number,
  #stacks_in_38 .timed-content-number div,
  #stacks_in_38 .timed-content-number div span,
  #stacks_in_38 .timed-content-fold .timed-content-number > div:after,
  #stacks_in_38 .timed-content-fold .timed-content-number > div:before,
  #stacks_in_38 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
    width: auto;
    min-width: 30px;
    height: 22.500000px;
    line-height: 21.750000px; /* Adjusted for font */
    font-size: 18.750000px;
    letter-spacing: 0px;
  }
  #stacks_in_38 .timed-content-digital .timed-content-number div span {
    line-height: 22.500000px;
    font-size: 22.500000px;
  }
  #stacks_in_38 .timed-content-number:after,
  #stacks_in_38 .timed-content-number:before {
      width: 4px;
      height: 4px;
      right: -6px;
  }
  /*  */
  #stacks_in_38 .timed-content-number:after,
  #stacks_in_38 .timed-content-number:before {
      width: 3px;
      height: 3px;
      right: -6px;
  }
  #stacks_in_38 .timed-content-number:before {
    transform: translateY(-6px);
  }
  #stacks_in_38 .timed-content-number:after {
    transform: translateY(3px);
  }
  /*  */
  /*  */
  #stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-1 {
      top: 45.000000px;
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-2 {
      top: 22.500000px;
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-4 {
      top: -22.500000px;
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .timed-content-number-5 {
      top: -45.000000px;
  }
  /*  */
  #stacks_in_38 .timed-content-rotate .timed-content-number {
    height: 45.000000px;/* double height */
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .state-out {
    transform: translate3D(0,-40.500000px,0) rotateX(75deg);
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .state-after {
    transform: translate3D(0,-22.500000px,0px) rotateX(37.5deg);
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number .state-before {
    transform: translate3D(0,22.500000px,0px) rotateX(-37.5deg);
  }
  #stacks_in_38 .timed-content-rotate .timed-content-number > div.state-in {
    transform: translate3D(0,40.500000px,0) rotateX(-75deg);
  }
}
@media all and (max-width: 350px) {
  #stacks_in_38 .timed-content-part div.timed-content-title {
    font-size: 10px;
  }
}
#stacks_in_38 .timed-content-rotate .timed-content-number:after, #stacks_in_38 .timed-content-rotate .timed-content-number:before {
  width: 100%;
  height: 100%;
  right: auto;
  transform: translate(0,0);
  display: block;
  top: auto;
  background: transparent;
}
#stacks_in_38 .timed-content-rotate .timed-content-part:before {
  display: none;
}
/*  */


#radar_stacks_in_31 {
	height: 50vh;
}

#radar_stacks_in_31 li {
		list-style: none;
		display: inline-block;
}



#stacks_out_31 {
	width: 74%;
}
#kalendar_stacks_in_74 {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1000px;
  border-radius: 4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 1px solid rgba(0, 0, 0, 0.12); }
  #kalendar_stacks_in_74.main-bg-color {
    background: rgba(255, 255, 255, 1.00); }
    #kalendar_stacks_in_74.main-bg-color::before {
      opacity: 0; }
  #kalendar_stacks_in_74.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(34, 34, 34, 1.00), rgba(85, 85, 85, 1.00)); }
    #kalendar_stacks_in_74.main-bg-gradient-2::before {
      opacity: 0; }
  #kalendar_stacks_in_74.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(34, 34, 34, 1.00), rgba(51, 51, 51, 1.00), rgba(68, 68, 68, 1.00)); }
    #kalendar_stacks_in_74.main-bg-gradient-3::before {
      opacity: 0; }
  #kalendar_stacks_in_74.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #kalendar_stacks_in_74.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); }
  #kalendar_stacks_in_74.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #kalendar_stacks_in_74.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)); }
  #kalendar_stacks_in_74.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #kalendar_stacks_in_74.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #kalendar_stacks_in_74.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #kalendar_stacks_in_74 * {
    box-sizing: border-box; }
  #kalendar_stacks_in_74 .kalendar-header {
    display: flex;
    flex: 1 0 auto;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
    #kalendar_stacks_in_74 .kalendar-header.header-bg-color {
      background: rgba(255, 255, 255, 1.00); }
      #kalendar_stacks_in_74 .kalendar-header.header-bg-color::before {
        opacity: 0; }
    #kalendar_stacks_in_74 .kalendar-header.header-bg-gradient-2 {
      background: linear-gradient(to bottom, rgba(34, 34, 34, 1.00), rgba(68, 68, 68, 1.00)); }
      #kalendar_stacks_in_74 .kalendar-header.header-bg-gradient-2::before {
        opacity: 0; }
    #kalendar_stacks_in_74 .kalendar-header.header-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(34, 34, 34, 1.00), rgba(51, 51, 51, 1.00), rgba(68, 68, 68, 1.00)); }
      #kalendar_stacks_in_74 .kalendar-header.header-bg-gradient-3::before {
        opacity: 0; }
    #kalendar_stacks_in_74 .kalendar-header.header-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #kalendar_stacks_in_74 .kalendar-header.header-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); }
    #kalendar_stacks_in_74 .kalendar-header.header-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #kalendar_stacks_in_74 .kalendar-header.header-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)); }
  #kalendar_stacks_in_74 .kalendar-content {
    display: flex;
    flex: 1 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    flex-direction: row-reverse; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-sidebar {
      width: 100%;
      flex: 0 1 auto;
      max-width: 300px;
      min-width: 300px; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-events {
      width: 100%;
      flex: 0 1 auto;
      max-width: calc(100% - 300px); }

#kalendar_stacks_in_74 .kalendar-header {
  align-items: center;
  color: rgba(0, 0, 0, 1.00);
  flex-direction: row-reverse;
  min-height: 130px;
  padding: 20px 25px; }
  #kalendar_stacks_in_74 .kalendar-header-desktop {
    display: flex;
    flex: 1 0 auto; }
    #kalendar_stacks_in_74 .kalendar-header-desktop h2, #kalendar_stacks_in_74 .kalendar-header-desktop p {
      text-align: left; }
  #kalendar_stacks_in_74 .kalendar-header-mobile {
    display: none;
    flex: 1 0 auto;
    align-items: center; }
    #kalendar_stacks_in_74 .kalendar-header-mobile .kalendar-header-title-inner {
      display: flex;
      align-items: center; }
      #kalendar_stacks_in_74 .kalendar-header-mobile .kalendar-header-title-inner h2 {
        flex: 1 0 auto;
        padding: 0 10px; }
  #kalendar_stacks_in_74 .kalendar-header-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    flex: 0 1 auto;
    font-size: 22px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 1.00);
    border-radius: 2px; }
    #kalendar_stacks_in_74 .kalendar-header-arrow:hover {
      background: rgba(0, 114, 255, 1.00); }
      #kalendar_stacks_in_74 .kalendar-header-arrow:hover svg {
        fill: rgba(251, 2, 7, 1.00); }
    #kalendar_stacks_in_74 .kalendar-header-arrow svg {
      width: 22px;
      height: 22px;
      fill: rgba(0, 0, 0, 1.00); }
  #kalendar_stacks_in_74 .kalendar-header-title {
    flex: 1 0 auto; }
    #kalendar_stacks_in_74 .kalendar-header-title h2 {
      margin: 0;
      font-weight: bold;
      color: rgba(0, 0, 0, 1.00);
      font-size: 24px; }
    #kalendar_stacks_in_74 .kalendar-header-title p {
      margin: 0 0 10px;
      color: rgba(0, 0, 0, 1.00);
      font-size: 16px; }

#kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 1.00);
  display: flex; }
  #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles.mobile {
    display: none; }
  #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title {
    height: 50px;
    width: 100%;
    display: flex;
    flex: 0 1 auto;
    padding: 0 15px;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.left {
      width: 100px;
      flex: 1 0 auto;
      text-align: center;
      justify-content: center; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.left svg {
        display: none;
        fill: rgba(0, 0, 0, 1.00);
        width: 22px;
        height: 22px; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.controls {
      padding: 0;
      border-bottom: none; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.controls span {
        height: 35px;
        display: flex;
        min-width: 35px;
        font-size: 14px;
        padding: 0 10px;
        border-radius: 2px;
        align-items: center;
        justify-content: center; }
        #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.controls span svg {
          width: 22px;
          height: 22px; }
        #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.controls span.control {
          padding: 0;
          width: 35px;
          background: rgba(0, 0, 0, 0.2); }
        #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.controls span.right {
          margin-left: auto; }

#kalendar_stacks_in_74 .kalendar-key-switch {
  top: 15px;
  left: 15px;
  position: absolute;
  display: none;
  align-items: center;
  justify-content: space-between; }
  #kalendar_stacks_in_74 .kalendar-key-switch span {
    color: rgba(255, 255, 255, 1.00);
    line-height: none;
    margin-left: 10px; }
  #kalendar_stacks_in_74 .kalendar-key-switch .key-switch {
    width: 40px;
    height: 22px;
    display: flex;
    padding: 2px;
    cursor: pointer;
    align-items: center;
    box-sizing: border-box;
    background: rgba(251, 2, 7, 1.00);
    border-radius: 40px; }
    #kalendar_stacks_in_74 .kalendar-key-switch .key-switch-knob {
      height: 18px;
      width: 18px;
      border-radius: 100%;
      pointer-events: none;
      background: rgba(251, 2, 7, 1.00); }
    #kalendar_stacks_in_74 .kalendar-key-switch .key-switch.on {
      justify-content: flex-end;
      background: rgba(0, 114, 255, 1.00); }

#kalendar_stacks_in_74 .kalendar-view-pill {
  top: 0;
  left: 0;
  bottom: 0;
  content: '';
  z-index: 1;
  display: block;
  margin-left: 0;
  position: absolute;
  pointer-events: none;
  transition: all .3s ease;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  background: rgba(0, 114, 255, 1.00); }

#kalendar_stacks_in_74 .kalendar-view-toggles {
  top: 10px;
  right: 10px;
  height: auto;
  display: flex;
  z-index: 1;
  overflow: hidden;
  margin-left: auto;
  position: absolute;
  flex-direction: row;
  border-radius: 2px;
  color: rgba(255, 255, 255, 1.00);
  background: rgba(251, 2, 7, 1.00); }
  #kalendar_stacks_in_74 .kalendar-view-toggles.months .kalendar-view-toggle.month::before {
    display: block; }
  #kalendar_stacks_in_74 .kalendar-view-toggles.days .kalendar-view-toggle.day::before {
    display: block; }
  #kalendar_stacks_in_74 .kalendar-view-toggles .kalendar-view-toggle {
    height: 30px;
    flex: 1 1 auto;
    cursor: pointer;
    display: flex;
    line-height: 1;
    font-size: 14px;
    padding: 10px 14px;
    position: relative;
    align-items: center;
    border-radius: 2px; }
    #kalendar_stacks_in_74 .kalendar-view-toggles .kalendar-view-toggle:last-child {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
    #kalendar_stacks_in_74 .kalendar-view-toggles .kalendar-view-toggle:not(:last-child) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border-right: none; }
    #kalendar_stacks_in_74 .kalendar-view-toggles .kalendar-view-toggle-text {
      z-index: 2;
      position: relative;
      pointer-events: none; }
    #kalendar_stacks_in_74 .kalendar-view-toggles .kalendar-view-toggle::before {
      content: '';
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      z-index: 1;
      display: none;
      position: absolute;
      pointer-events: none;
      transition: all .3s ease;
      border-radius: 2px;
      background: rgba(0, 114, 255, 1.00); }

#kalendar_stacks_in_74 .kalendar-events {
  position: relative;
  padding-top: 50px; }
  #kalendar_stacks_in_74 .kalendar-events .kalendar-event-divider {
    top: 0;
    left: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    width: calc(100px - 1px);
    border-right: 1px solid rgba(0, 0, 0, 0.12); }
  #kalendar_stacks_in_74 .kalendar-events .kalendar-event-notice {
    color: rgba(0, 0, 0, 1.00);
    display: flex;
    padding: 20px;
    min-height: 100%;
    align-items: center;
    justify-content: center; }
  #kalendar_stacks_in_74 .kalendar-events .kalendar-event-list {
    margin: 0;
    padding: 0;
    list-style: none; }
    #kalendar_stacks_in_74 .kalendar-events .kalendar-event-list:last-child .kalendar-event-item:last-child {
      border-bottom: none !important; }

#kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item {
  display: flex;
  padding-bottom: 15px; }
  #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date {
    width: 100px;
    display: flex;
    padding: 0 10px;
    align-items: center;
    flex-direction: column;
    justify-content: center; }
    #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date .date-top, #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date .date-bottom {
      text-align: center; }
      #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date .date-top span, #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date .date-bottom span {
        display: none; }
      #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date .date-top svg, #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date .date-bottom svg {
        width: 20px;
        height: 20px;
        display: none;
        fill: rgba(0, 0, 0, 1.00); }
    #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date .date-top {
      margin-bottom: 2px;
      color: rgba(0, 0, 0, 1.00);
      font-size: 20px; }
    #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-date .date-bottom {
      color: rgba(255, 255, 255, 0.50);
      font-size: 16px; }
  #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card {
    display: flex;
    flex: 1 0 auto;
    padding: 0 10px;
    max-width: calc(100% - 100px); }
    #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card-inner {
      width: 100%;
      display: flex;
      cursor: pointer;
      overflow: hidden;
      align-items: center;
      transition: all 0.3s ease;
      border-radius: 4px;
      padding: 15px 15px; }
    #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card-content {
      width: 100%;
      margin-right: auto;
      max-width: calc(100% - 45px); }
    #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card-more {
      width: 35px;
      height: 35px;
      display: flex;
      line-height: 1;
      margin-left: 10px;
      border-radius: 50%;
      align-items: center;
      justify-content: center; }
      #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card-more svg {
        width: 18px;
        height: 18px; }
    #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card .card-title {
      overflow: hidden;
      margin-bottom: 5px;
      text-overflow: ellipsis;
      font-size: 18px; }
      #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card .card-title span {
        font-size: 12px;
        margin-left: auto; }
    #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card .card-date-time {
      display: flex;
      align-items: center;
      font-size: 14px; }
      #kalendar_stacks_in_74 .kalendar-event-list .kalendar-event-item-card .card-date-time svg {
        width: 14px;
        height: 14px;
        margin-right: 6px; }

#kalendar_stacks_in_74.days .kalendar-event-list .kalendar-event-item:nth-child(2) {
  padding-top: 15px; }
  #kalendar_stacks_in_74.days .kalendar-event-list .kalendar-event-item:nth-child(2) .kalendar-event-item-date .date-top span, #kalendar_stacks_in_74.days .kalendar-event-list .kalendar-event-item:nth-child(2) .kalendar-event-item-date .date-bottom span {
    display: block; }

#kalendar_stacks_in_74.days .kalendar-event-list .kalendar-event-item.all-day:nth-child(2) .kalendar-event-item-date .date-top span, #kalendar_stacks_in_74.days .kalendar-event-list .kalendar-event-item.all-day:nth-child(2) .kalendar-event-item-date .date-bottom span {
  display: none; }

#kalendar_stacks_in_74.days .kalendar-event-list .kalendar-event-item.all-day:nth-child(2) .kalendar-event-item-date .date-top svg, #kalendar_stacks_in_74.days .kalendar-event-list .kalendar-event-item.all-day:nth-child(2) .kalendar-event-item-date .date-bottom svg {
  display: block; }

#kalendar_stacks_in_74.months .kalendar-event-group {
  position: relative; }
  #kalendar_stacks_in_74.months .kalendar-event-group .kalendar-event-divider {
    top: 50px; }
  #kalendar_stacks_in_74.months .kalendar-event-group:first-child .kalendar-content-titles.group {
    border-top: none; }

#kalendar_stacks_in_74.months .kalendar-content-titles.group {
  border-top: 1px solid rgba(0, 0, 0, 0.12); }
  #kalendar_stacks_in_74.months .kalendar-content-titles.group:only-child {
    display: none; }
  #kalendar_stacks_in_74.months .kalendar-content-titles.group .kalendar-content-title.left {
    font-weight: bold; }
  #kalendar_stacks_in_74.months .kalendar-content-titles.group .kalendar-content-title span.mobile {
    display: none; }
  #kalendar_stacks_in_74.months .kalendar-content-titles.group .event-count {
    display: flex;
    width: 30px;
    height: 30px;
    line-height: 1;
    font-size: 14px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: rgba(255, 255, 255, 1.00);
    background: rgba(251, 2, 7, 1.00); }

#kalendar_stacks_in_74.months .kalendar-event-list .kalendar-event-item:first-child {
  padding-top: 15px; }
  #kalendar_stacks_in_74.months .kalendar-event-list .kalendar-event-item:first-child .kalendar-event-item-date .date-top span, #kalendar_stacks_in_74.months .kalendar-event-list .kalendar-event-item:first-child .kalendar-event-item-date .date-bottom span {
    display: block; }

#kalendar_stacks_in_74.months .kalendar-event-list .kalendar-event-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

#kalendar_stacks_in_74.months .kalendar-event-list .kalendar-event-item.all-day:first-child .kalendar-event-item-date .date-top span, #kalendar_stacks_in_74.months .kalendar-event-list .kalendar-event-item.all-day:first-child .kalendar-event-item-date .date-bottom span {
  display: none; }

#kalendar_stacks_in_74.months .kalendar-event-list .kalendar-event-item.all-day:first-child .kalendar-event-item-date .date-top svg, #kalendar_stacks_in_74.months .kalendar-event-list .kalendar-event-item.all-day:first-child .kalendar-event-item-date .date-bottom svg {
  display: block; }

#kalendar_stacks_in_74 .kalendar-sidebar {
  z-index: 1;
  display: flex;
  margin: 0 auto;
  max-width: 300px;
  position: relative;
  padding: 0 10px 10px;
  flex-direction: column;
  color: rgba(0, 0, 0, 1.00);
  border-left: 1px solid rgba(0, 0, 0, 0.12); }
  #kalendar_stacks_in_74 .kalendar-sidebar-controls {
    height: 50px;
    display: flex;
    padding: 0 5px;
    align-items: center;
    color: rgba(0, 0, 0, 1.00);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  #kalendar_stacks_in_74 .kalendar-sidebar-month {
    height: 35px;
    display: flex;
    flex: 1 0 auto;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 2px; }
    #kalendar_stacks_in_74 .kalendar-sidebar-month:hover {
      color: rgba(251, 2, 7, 1.00);
      background: rgba(0, 114, 255, 1.00); }
  #kalendar_stacks_in_74 .kalendar-sidebar-arrow {
    width: 35px;
    height: 35px;
    display: flex;
    line-height: 1;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    align-items: center;
    justify-content: center;
    border-radius: 2px; }
    #kalendar_stacks_in_74 .kalendar-sidebar-arrow svg {
      width: 18px;
      height: 18px;
      fill: rgba(0, 0, 0, 1.00); }
    #kalendar_stacks_in_74 .kalendar-sidebar-arrow:hover {
      background: rgba(0, 114, 255, 1.00); }
      #kalendar_stacks_in_74 .kalendar-sidebar-arrow:hover svg {
        fill: rgba(251, 2, 7, 1.00); }
  #kalendar_stacks_in_74 .kalendar-sidebar-today {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    border-radius: 2px;
    background: rgba(251, 2, 7, 1.00);
    padding: 10px 10px;
    display: flex;
    cursor: pointer;
    user-select: none;
    text-align: center;
    align-items: center;
    margin: 15px 10px 5px;
    justify-content: center;
    transition: all 0.3s ease; }
    #kalendar_stacks_in_74 .kalendar-sidebar-today:hover, #kalendar_stacks_in_74 .kalendar-sidebar-today.active {
      transform: translateY(-3px);
      box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
      color: rgba(251, 2, 7, 1.00);
      background: rgba(0, 114, 255, 1.00); }
  #kalendar_stacks_in_74 .kalendar-sidebar-key {
    margin: 10px 0 0;
    list-style: none;
    padding: 15px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.12); }
    #kalendar_stacks_in_74 .kalendar-sidebar-key-switch {
      display: none; }
    #kalendar_stacks_in_74 .kalendar-sidebar-key li {
      display: flex;
      padding: 10px;
      cursor: pointer;
      border-radius: 4px;
      align-items: center;
      color: rgba(0, 0, 0, 1.00); }
      #kalendar_stacks_in_74 .kalendar-sidebar-key li .key-title {
        font-size: 14px; }
      #kalendar_stacks_in_74 .kalendar-sidebar-key li .key-toggle {
        width: 18px;
        height: 18px;
        border-radius: 2px;
        display: flex;
        margin-left: auto;
        align-items: center;
        justify-content: center; }
        #kalendar_stacks_in_74 .kalendar-sidebar-key li .key-toggle svg {
          width: 24px;
          height: 24px; }
      #kalendar_stacks_in_74 .kalendar-sidebar-key li.off .key-toggle {
        opacity: 0.5; }
      #kalendar_stacks_in_74 .kalendar-sidebar-key li.off .key-title {
        text-decoration: line-through; }
  #kalendar_stacks_in_74 .kalendar-sidebar-datepicker {
    position: relative; }
    #kalendar_stacks_in_74 .kalendar-sidebar-datepicker.loading .vdp-datepicker {
      opacity: 0.2;
      pointer-events: none; }
    #kalendar_stacks_in_74 .kalendar-sidebar-datepicker.loading .kalendar-sidebar-datepicker-loader {
      display: flex; }
    #kalendar_stacks_in_74 .kalendar-sidebar-datepicker-loader {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: none;
      min-height: 200px;
      position: absolute;
      align-items: center;
      z-index: 999999999999;
      justify-content: center;
      animation: rotate-loader 1s infinite linear; }
      #kalendar_stacks_in_74 .kalendar-sidebar-datepicker-loader svg {
        fill: rgba(0, 0, 0, 1.00);
        width: 30px;
        height: 30px; }

@keyframes rotate-loader {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

#kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar {
  width: auto;
  border: none;
  background: none;
  user-select: none;
  color: rgba(0, 0, 0, 1.00); }
  #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar header {
    display: none; }
  #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell {
    padding: 0;
    border: none;
    background: none;
    align-items: center;
    display: inline-flex;
    justify-content: center; }
    #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell-inner {
      width: 100%;
      padding: 5px;
      height: 40px;
      max-width: 40px;
      position: relative;
      align-items: center;
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      font-size: 16px;
      color: rgba(0, 0, 0, 1.00);
      border-radius: 2px;
      border: 1px solid rgba(0, 0, 0, 0.00);
      background: rgba(0, 0, 0, 0.00); }
    #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell .date {
      line-height: 1;
      margin-bottom: 3px; }
    #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell .dots {
      left: 50%;
      bottom: 5px;
      display: flex;
      line-height: 1;
      position: absolute;
      transform: translateX(-50%); }
      #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell .dots .dot {
        margin: 0 1px;
        border-radius: 50%;
        width: 4px;
        height: 4px; }
  #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell.day-header {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px; }
  #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day {
    height: 40px;
    transition: all 0.2s;
    font-size: 16px; }
    #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover .cell-inner {
      color: rgba(0, 0, 255, 1.00);
      border: 1px solid rgba(0, 114, 255, 1.00);
      background: rgba(0, 0, 0, 0.00);
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); }
    #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day.selected .cell-inner {
      background: none;
      color: rgba(0, 0, 0, 1.00); }
    #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day.selected:hover .cell-inner {
      color: rgba(0, 0, 255, 1.00);
      border: 1px solid rgba(0, 114, 255, 1.00);
      background: rgba(0, 0, 0, 0.00);
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); }
    #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day.highlighted .cell-inner {
      color: rgba(251, 2, 7, 1.00);
      border-color: rgba(0, 0, 0, 0.00);
      background: rgba(0, 114, 255, 1.00);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
      #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day.highlighted .cell-inner .dot {
        background: rgba(0, 0, 0, 0.50); }
    #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events {
      position: relative; }
      #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown {
        top: 100%;
        right: 0;
        color: inherit;
        display: none;
        text-align: left;
        max-width: 300px;
        border-radius: 5px;
        overflow: hidden;
        position: absolute;
        z-index: 9999999999;
        pointer-events: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); }
        #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.main-bg-color {
          background: rgba(255, 255, 255, 1.00); }
          #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.main-bg-color::before {
            opacity: 0; }
        #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.main-bg-gradient-2 {
          background: linear-gradient(to bottom, rgba(34, 34, 34, 1.00), rgba(85, 85, 85, 1.00)); }
          #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.main-bg-gradient-2::before {
            opacity: 0; }
        #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.main-bg-gradient-3 {
          background: linear-gradient(to bottom, rgba(34, 34, 34, 1.00), rgba(51, 51, 51, 1.00), rgba(68, 68, 68, 1.00)); }
          #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.main-bg-gradient-3::before {
            opacity: 0; }
        #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.main-bg-image-ov-color {
          background: url() no-repeat center center;
          background-size: cover; }
          #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.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); }
        #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.main-bg-image-ov-gradient {
          background: url() no-repeat center center;
          background-size: cover; }
          #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown.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)); }
        #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown .event-dropdown-item {
          display: flex;
          line-height: 1;
          color: inherit;
          padding: 10px 10px;
          align-items: center; }
          #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown .event-dropdown-item:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
        #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown .event-dropdown-dot {
          width: 10px;
          height: 10px;
          min-width: 10px;
          min-height: 10px;
          flex: 0 1 auto;
          margin-right: 10px;
          border-radius: 50%; }
        #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events .cell-event-dropdown .event-dropdown-text {
          flex: 0 1 auto;
          font-size: 14px;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
          line-height: calc(14px * 1.618); }
      #kalendar_stacks_in_74 .datepicker_stacks_in_74.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day .cell-inner.has-events:hover .cell-event-dropdown {
        display: block; }

#kalendar_stacks_in_74 .kalendar-event-modal {
  z-index: 100000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 15px;
  padding: 20px;
  position: fixed;
  overflow-y: scroll;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7); }
  #kalendar_stacks_in_74 .kalendar-event-modal-inner {
    max-height: 100%;
    width: 100%;
    flex: 1 0 auto;
    margin: 0 auto;
    max-width: 600px;
    color: rgba(0, 0, 0, 1.00);
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }
    #kalendar_stacks_in_74 .kalendar-event-modal-inner.main-bg-color {
      background: rgba(255, 255, 255, 1.00); }
      #kalendar_stacks_in_74 .kalendar-event-modal-inner.main-bg-color::before {
        opacity: 0; }
    #kalendar_stacks_in_74 .kalendar-event-modal-inner.main-bg-gradient-2 {
      background: linear-gradient(to bottom, rgba(34, 34, 34, 1.00), rgba(85, 85, 85, 1.00)); }
      #kalendar_stacks_in_74 .kalendar-event-modal-inner.main-bg-gradient-2::before {
        opacity: 0; }
    #kalendar_stacks_in_74 .kalendar-event-modal-inner.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(34, 34, 34, 1.00), rgba(51, 51, 51, 1.00), rgba(68, 68, 68, 1.00)); }
      #kalendar_stacks_in_74 .kalendar-event-modal-inner.main-bg-gradient-3::before {
        opacity: 0; }
    #kalendar_stacks_in_74 .kalendar-event-modal-inner.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #kalendar_stacks_in_74 .kalendar-event-modal-inner.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); }
    #kalendar_stacks_in_74 .kalendar-event-modal-inner.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #kalendar_stacks_in_74 .kalendar-event-modal-inner.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)); }
  #kalendar_stacks_in_74 .kalendar-event-modal-header {
    overflow: hidden;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 20px 20px; }
    #kalendar_stacks_in_74 .kalendar-event-modal-header h1 {
      line-height: 1;
      text-align: left;
      margin: 15px 0 10px;
      font-weight: normal;
      color: inherit !important;
      font-size: 22px; }
      #kalendar_stacks_in_74 .kalendar-event-modal-header h1 span {
        margin-left: 10px;
        color: inherit !important;
        font-size: 12px; }
  #kalendar_stacks_in_74 .kalendar-event-modal-content {
    height: 100%;
    font-size: 14px;
    overflow-y: scroll;
    max-height: 500px;
    color: rgba(0, 0, 0, 1.00);
    line-height: calc(14px * 1.618); }
    #kalendar_stacks_in_74 .kalendar-event-modal-content-notice {
      width: 100%;
      height: 100%;
      display: flex;
      flex: 1 0 auto;
      min-height: 100px;
      align-items: center;
      justify-content: center; }
    #kalendar_stacks_in_74 .kalendar-event-modal-content a {
      color: rgba(0, 114, 255, 1.00);
      text-decoration: underline; }
  #kalendar_stacks_in_74 .kalendar-event-modal-close {
    width: 24px;
    height: 24px;
    margin-left: auto; }
    #kalendar_stacks_in_74 .kalendar-event-modal-close svg {
      width: 24px;
      height: 24px;
      cursor: pointer;
      align-items: center;
      display: inline-flex;
      justify-content: center; }
  #kalendar_stacks_in_74 .kalendar-event-modal-date-time {
    display: flex;
    margin-top: 20px; }
    #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time {
      display: flex;
      flex: 1 0 auto;
      flex-wrap: wrap;
      text-align: center;
      border-radius: 4px;
      justify-content: center;
      padding: 10px;
      font-size: 14px; }
      #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time:first-child {
        margin-right: 10px; }
      #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time:last-child {
        margin-left: 10px; }
      #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time:only-child {
        margin: 0 10px; }
      #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time span:not(:only-child):last-child {
        margin-left: 10px; }
      #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time svg {
        margin-right: 6px;
        width: 14px;
        height: 14px; }
    #kalendar_stacks_in_74 .kalendar-event-modal-date-time .dots {
      display: flex;
      line-height: 0;
      flex: 0 1 auto;
      overflow: hidden;
      text-align: center;
      align-items: center;
      justify-content: center; }
      #kalendar_stacks_in_74 .kalendar-event-modal-date-time .dots::after {
        display: table;
        white-space: nowrap;
        text-overflow: clip;
        content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "; }
  #kalendar_stacks_in_74 .kalendar-event-modal-location {
    font-size: 14px; }
    #kalendar_stacks_in_74 .kalendar-event-modal-location span:not(:only-child):last-child {
      margin-left: 10px; }
    #kalendar_stacks_in_74 .kalendar-event-modal-location svg {
      margin-right: 10px;
      height: 14px;
      width: 14px; }
  #kalendar_stacks_in_74 .kalendar-event-modal-description {
    padding: 10px 20px; }

#kalendar_stacks_in_74.hide-sidebar.months .kalendar-content-titles.group .kalendar-content-title span:not(.mobile) {
  display: none; }

#kalendar_stacks_in_74.hide-sidebar.months .kalendar-content-titles.group .kalendar-content-title span.mobile {
  display: block; }

#kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-content-titles.mobile {
  display: flex; }

#kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events {
  max-width: 100%; }
  #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-event-divider {
    display: none; }
  #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-content-title.left {
    display: none; }
  #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-content-title:not(.left) {
    text-align: center; }
  #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-event-item-card {
    max-width: calc(100%); }
    #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-event-item-card .card-title {
      font-size: 16px; }
      #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-event-item-card .card-title span {
        font-size: 12px;
        margin-left: auto; }
    #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-event-item-card .card-date-time {
      font-size: 14px; }
      #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-event-item-card .card-date-time svg {
        width: 14px;
        height: 14px; }
  #kalendar_stacks_in_74.hide-sidebar .kalendar-content .kalendar-events .kalendar-event-item-date {
    display: none; }

@media (max-width: 450px) {
  #kalendar_stacks_in_74 .kalendar-events .kalendar-event-item-card-more {
    display: none; }
  #kalendar_stacks_in_74 .kalendar-event-modal-header h1 {
    text-align: center;
    font-size: 20px; }
    #kalendar_stacks_in_74 .kalendar-event-modal-header h1 span {
      width: 100%;
      display: block;
      margin-left: 0;
      margin-top: 10px;
      font-size: 12px; }
  #kalendar_stacks_in_74 .kalendar-event-modal-date-time {
    flex-direction: column; }
    #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time:first-child, #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time:last-child {
      margin: 0; }
    #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time {
      font-size: 14px; }
      #kalendar_stacks_in_74 .kalendar-event-modal-date-time .time svg {
        width: 14px;
        height: 14px; }
    #kalendar_stacks_in_74 .kalendar-event-modal-date-time .dots {
      margin: 5px 0;
      overflow: hidden; }
      #kalendar_stacks_in_74 .kalendar-event-modal-date-time .dots::after {
        width: 10px;
        height: 30px;
        display: inline;
        line-height: 0.5;
        white-space: normal;
        word-break: break-all;
        text-overflow: initial; }
  #kalendar_stacks_in_74 .kalendar-event-modal-location {
    text-align: center;
    font-size: 14px; }
    #kalendar_stacks_in_74 .kalendar-event-modal-location svg {
      width: 14px;
      height: 14px; } }

@media (max-width: 700px) {
  #kalendar_stacks_in_74 .kalendar-header {
    min-height: 0; }
    #kalendar_stacks_in_74 .kalendar-header-desktop {
      display: none; }
    #kalendar_stacks_in_74 .kalendar-header-mobile {
      display: flex; }
      #kalendar_stacks_in_74 .kalendar-header-mobile .kalendar-header-title {
        text-align: center; }
    #kalendar_stacks_in_74 .kalendar-header-title h1 {
      font-size: 24px; }
    #kalendar_stacks_in_74 .kalendar-header-title p {
      font-size: 16px; }
  #kalendar_stacks_in_74 .kalendar-content {
    flex-direction: column; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-key-switch {
      display: flex; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles.mobile {
      display: flex; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-events {
      max-width: 100%; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-event-divider {
        display: none; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-content-title.left {
        display: none; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-content-title:not(.left) {
        text-align: center; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-event-item-card {
        max-width: calc(100%); }
        #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-event-item-card .card-title {
          font-size: 16px; }
          #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-event-item-card .card-title span {
            font-size: 12px;
            margin-left: auto; }
        #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-event-item-card .card-date-time {
          font-size: 14px; }
          #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-event-item-card .card-date-time svg {
            width: 14px;
            height: 14px; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-events .kalendar-event-item-date {
        display: none; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-sidebar {
      border: none;
      padding: 15px;
      margin: 0 auto;
      max-width: 400px; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-sidebar-controls {
        display: none; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-sidebar-key.hide-keys {
        display: none; }
      #kalendar_stacks_in_74 .kalendar-content .kalendar-sidebar .cell-event-dropdown {
        display: none !important; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-events {
      border-top: 1px solid rgba(0, 0, 0, 0.12); }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-event-item-more {
      display: none; }
  #kalendar_stacks_in_74.months .kalendar-content-titles.group .kalendar-content-title span:not(.mobile) {
    display: none; }
  #kalendar_stacks_in_74.months .kalendar-content-titles.group .kalendar-content-title span.mobile {
    display: block; } }

@media (max-width: px) {
  #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.left {
    width: 55px; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.left span {
      display: none; }
    #kalendar_stacks_in_74 .kalendar-content .kalendar-content-titles .kalendar-content-title.left svg {
      display: block; }
  #kalendar_stacks_in_74 .kalendar-events .kalendar-event-divider {
    width: calc(55px - 1px); }
  #kalendar_stacks_in_74 .kalendar-events .kalendar-event-item-date {
    width: 55px; }
    #kalendar_stacks_in_74 .kalendar-events .kalendar-event-item-date .date-top {
      font-size: 18px; }
    #kalendar_stacks_in_74 .kalendar-events .kalendar-event-item-date .date-bottom {
      font-size: 14px; }
  #kalendar_stacks_in_74 .kalendar-events .kalendar-event-item-card {
    max-width: calc(100% - 55px); } }

/*  */
#kalendar_stacks_in_74 .kalendar-event {
  display: none; }

/*  */
/*  */

#stacks_in_74 {
	background-color: rgba(255, 255, 255, 1.00);
	margin:  5px;
	padding:  5px;
}

#stacks_out_74 {
	width: 90%;
}
#kalendar_stacks_in_74 .US_holidays {
	color: rgba(255, 255, 255, 1.00);
	/*  */
	background: rgba(56, 143, 248, 1.00);
	/*  */
	/*  */
}
#kalendar_stacks_in_74 .US_holidays svg{
	fill: rgba(255, 255, 255, 1.00);
}
#kalendar_stacks_in_74 .US_holidays .subtext svg{
	fill: rgba(255, 255, 255, 0.50);
}
#kalendar_stacks_in_74 .US_holidays .subtext{
	color: rgba(255, 255, 255, 0.50);
}
#kalendar_stacks_in_74 .US_holidays .highlight{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 0.20);
}:root{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(254, 254, 254, 1.00);--white-color:var(--white);--primary:rgba(255, 255, 10, 1.00);--secondary:rgba(231, 231, 231, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(240, 138, 36, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(0, 0, 0, 1.00);--secondary-contrast:rgba(51, 51, 51, 1.00);--success-contrast:rgba(0, 0, 0, 1.00);--warning-contrast:rgba(0, 0, 0, 1.00);--alert-contrast:rgba(0, 0, 0, 1.00);--primary-dark:rgba(225, 225, 0, 1.00);--secondary-dark:rgba(201, 201, 201, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(210, 108, 6, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(34, 34, 34, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--selection-background:var(--primary);--selection-text:var(--primary-contrast);--link-decoration:none;--link-decoration-hover:none;--overlay-color:rgba(0, 0, 0, 0.50);--radius:3px;--small-gutter:1.25rem;--medium-gutter:2rem;--large-gutter:2rem;--site-width:calc(1200rem/16);}::selection{background:var(--selection-background);color:var(--selection-text)}.alt{--header-color:rgba(0, 0, 0, 1.00);--subheader-color:rgba(230, 230, 230, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}.grid-container{max-width:var(--site-width)}.radius{border-radius:var(--radius)}body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(24rem/16)}h2,.h2{font-size:calc(20rem/16)}h3,.h3{font-size:calc(19rem/16)}h4,.h4{font-size:calc(18rem/16)}h5,.h5{font-size:calc(17rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:40%}.button{font-size:calc(16rem/16)}.button.tiny{font-size:calc(10rem/16)}.button.small{font-size:calc(12rem/16)}.button.large{font-size:calc(20rem/16)}@media only screen and (min-width:40em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}@media only screen and (min-width:64em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}a{color:var(--link-color);-webkit-text-decoration:var(--link-decoration);text-decoration:var(--link-decoration)}a:hover,a:focus{color:var(--link-color-hover);-webkit-text-decoration:var(--link-decoration-hover);text-decoration:var(--link-decoration-hover)}.menu a{color:var(--menu-link-color);background:var(--menu-bg-color)}.menu a:hover{color:var(--menu-link-color-hover)}h1,h2,h3,h4,h5,h6{color:var(--header-color)}small{color:var(--small-color)}.subheader{color:var(--subheader-color)}.text ul,.text ol{list-style-position:outside}.text>ul,.text>ol,.text .mez>div>ul,.text .mez>div>ol{margin-left:1.25rem}.text ul{list-style-type:disc}.text ul ul,.text ol ul{list-style-type:circle}.text ol{list-style-type:decimal}.text ol ol,.text ul ol{list-style-type:lower-alpha}.radius,.radius:before,.radius:after{border-radius:calc(3rem/16)}body{background-color:rgba(255, 255, 255, 1.00);}
.myclass{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(34, 34, 34, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
 .myclass>.menu a, .menu.myclass a{--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(97, 103, 173, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .myclass>.menu .menu-text, .menu.myclass .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .myclass>.menu>li>a, .menu.myclass>li>a{padding-top:1rem;padding-bottom:1rem} .myclass>.menu .submenu>li>a, .menu.myclass .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .myclass>.menu li.active>a, .myclass>.menu li.is-active>a, .myclass>.menu a.is-active, .menu.myclass li.active>a, .menu.myclass li.is-active>a, .menu.myclass a.is-active{--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .myclass>.menu .submenu li.active>a, .myclass>.menu .submenu li.is-active>a, .myclass>.menu .submenu a.is-active, .menu.myclass .submenu li.active>a, .menu.myclass .submenu li.is-active>a, .menu.myclass .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .myclass>.menu .submenu a, .menu.myclass .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .myclass>.menu .submenu, .menu.myclass .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .myclass>.menu .submenu a, .menu.myclass .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .myclass>.menu .submenu .menu-text, .menu.myclass .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .myclass>.menu .submenu li.active>a, .myclass>.menu .submenu li.is-active>a, .myclass>.menu .submenu a.is-active, .menu.myclass .submenu li.active>a, .menu.myclass .submenu li.is-active>a, .menu.myclass .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
 .top-bar.myclass, .top-bar.myclass ul{--topbar-background:rgba(230, 230, 230, 1.00)} .top-bar.myclass{padding:0 0.5rem} .title-bar.myclass{--titlebar-background:rgba(10, 10, 10, 1.00);--titlebar-color:rgba(254, 254, 254, 1.00);padding:0.75rem} .title-bar.myclass .menu-icon{--hamburger-color:rgba(254, 254, 254, 1.00);--hamburger-width:1.25rem;--hamburger-height:1rem;--hamburger-weight:2px}
