@import url(https://fonts.googleapis.com/css?family=Oxygen&display=swap);/* 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;
	}
/* 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 {
	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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* 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;
	}
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}
.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}@charset "UTF-8";

/** Import Bootstrap functions */

/* Variables used in Zeplin */

/* Color palette */

/** Import everything from autoload */

/*!
 * Bootstrap v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/* line 1, node_modules/bootstrap/scss/_root.scss */

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #636da9;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #f27b13;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #c80205;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Oxygen", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* line 21, node_modules/bootstrap/scss/_reboot.scss */

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

/* line 27, node_modules/bootstrap/scss/_reboot.scss */

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

/* line 45, node_modules/bootstrap/scss/_reboot.scss */

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

/* line 57, node_modules/bootstrap/scss/_reboot.scss */

body {
  margin: 0;
  font-family: "Oxygen", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #ffffff;
}

/* line 73, node_modules/bootstrap/scss/_reboot.scss */

[tabindex="-1"]:focus {
  outline: 0 !important;
}

/* line 83, node_modules/bootstrap/scss/_reboot.scss */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/* line 99, node_modules/bootstrap/scss/_reboot.scss */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 109, node_modules/bootstrap/scss/_reboot.scss */

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 121, node_modules/bootstrap/scss/_reboot.scss */

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

/* line 129, node_modules/bootstrap/scss/_reboot.scss */

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 135, node_modules/bootstrap/scss/_reboot.scss */

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 142, node_modules/bootstrap/scss/_reboot.scss */

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/* line 149, node_modules/bootstrap/scss/_reboot.scss */

dt {
  font-weight: 700;
}

/* line 153, node_modules/bootstrap/scss/_reboot.scss */

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 158, node_modules/bootstrap/scss/_reboot.scss */

blockquote {
  margin: 0 0 1rem;
}

/* line 162, node_modules/bootstrap/scss/_reboot.scss */

dfn {
  font-style: italic;
}

/* line 167, node_modules/bootstrap/scss/_reboot.scss */

b,
strong {
  font-weight: bolder;
}

/* line 173, node_modules/bootstrap/scss/_reboot.scss */

small {
  font-size: 80%;
}

/* line 182, node_modules/bootstrap/scss/_reboot.scss */

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 190, node_modules/bootstrap/scss/_reboot.scss */

sub {
  bottom: -.25em;
}

/* line 191, node_modules/bootstrap/scss/_reboot.scss */

sup {
  top: -.5em;
}

/* line 198, node_modules/bootstrap/scss/_reboot.scss */

a {
  color: #c80205;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

a:hover {
  color: #7c0103;
  text-decoration: underline;
}

/* line 216, node_modules/bootstrap/scss/_reboot.scss */

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

/* line 225, node_modules/bootstrap/scss/_reboot.scss */

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

/* line 235, node_modules/bootstrap/scss/_reboot.scss */

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

/* line 243, node_modules/bootstrap/scss/_reboot.scss */

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

/* line 260, node_modules/bootstrap/scss/_reboot.scss */

figure {
  margin: 0 0 1rem;
}

/* line 270, node_modules/bootstrap/scss/_reboot.scss */

img {
  vertical-align: middle;
  border-style: none;
}

/* line 275, node_modules/bootstrap/scss/_reboot.scss */

svg {
  overflow: hidden;
  vertical-align: middle;
}

/* line 287, node_modules/bootstrap/scss/_reboot.scss */

table {
  border-collapse: collapse;
}

/* line 291, node_modules/bootstrap/scss/_reboot.scss */

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

/* line 299, node_modules/bootstrap/scss/_reboot.scss */

th {
  text-align: inherit;
}

/* line 310, node_modules/bootstrap/scss/_reboot.scss */

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* line 319, node_modules/bootstrap/scss/_reboot.scss */

button {
  border-radius: 0;
}

/* line 327, node_modules/bootstrap/scss/_reboot.scss */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/* line 332, node_modules/bootstrap/scss/_reboot.scss */

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 343, node_modules/bootstrap/scss/_reboot.scss */

button,
input {
  overflow: visible;
}

/* line 348, node_modules/bootstrap/scss/_reboot.scss */

button,
select {
  text-transform: none;
}

/* line 356, node_modules/bootstrap/scss/_reboot.scss */

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* line 364, node_modules/bootstrap/scss/_reboot.scss */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* line 372, node_modules/bootstrap/scss/_reboot.scss */

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/* line 379, node_modules/bootstrap/scss/_reboot.scss */

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

/* line 391, node_modules/bootstrap/scss/_reboot.scss */

textarea {
  overflow: auto;
  resize: vertical;
}

/* line 397, node_modules/bootstrap/scss/_reboot.scss */

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 412, node_modules/bootstrap/scss/_reboot.scss */

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

/* line 424, node_modules/bootstrap/scss/_reboot.scss */

progress {
  vertical-align: baseline;
}

/* line 429, node_modules/bootstrap/scss/_reboot.scss */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 434, node_modules/bootstrap/scss/_reboot.scss */

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

/* line 447, node_modules/bootstrap/scss/_reboot.scss */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 457, node_modules/bootstrap/scss/_reboot.scss */

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 466, node_modules/bootstrap/scss/_reboot.scss */

output {
  display: inline-block;
}

/* line 470, node_modules/bootstrap/scss/_reboot.scss */

summary {
  display: list-item;
  cursor: pointer;
}

/* line 475, node_modules/bootstrap/scss/_reboot.scss */

template {
  display: none;
}

/* line 481, node_modules/bootstrap/scss/_reboot.scss */

[hidden] {
  display: none !important;
}

/* line 7, node_modules/bootstrap/scss/_type.scss */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: "Demos Next W01 Regular", serif;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

/* line 16, node_modules/bootstrap/scss/_type.scss */

h1,
.h1 {
  font-size: 2.5rem;
}

/* line 17, node_modules/bootstrap/scss/_type.scss */

h2,
.h2 {
  font-size: 2rem;
}

/* line 18, node_modules/bootstrap/scss/_type.scss */

h3,
.h3 {
  font-size: 1.75rem;
}

/* line 19, node_modules/bootstrap/scss/_type.scss */

h4,
.h4 {
  font-size: 1.5rem;
}

/* line 20, node_modules/bootstrap/scss/_type.scss */

h5,
.h5 {
  font-size: 1.25rem;
}

/* line 21, node_modules/bootstrap/scss/_type.scss */

h6,
.h6 {
  font-size: 1rem;
}

/* line 23, node_modules/bootstrap/scss/_type.scss */

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* line 29, node_modules/bootstrap/scss/_type.scss */

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 34, node_modules/bootstrap/scss/_type.scss */

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 39, node_modules/bootstrap/scss/_type.scss */

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 44, node_modules/bootstrap/scss/_type.scss */

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 55, node_modules/bootstrap/scss/_type.scss */

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

/* line 67, node_modules/bootstrap/scss/_type.scss */

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

/* line 73, node_modules/bootstrap/scss/_type.scss */

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

/* line 84, node_modules/bootstrap/scss/_type.scss */

.list-unstyled,
.comment-list {
  padding-left: 0;
  list-style: none;
}

/* line 89, node_modules/bootstrap/scss/_type.scss */

.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 92, node_modules/bootstrap/scss/_type.scss */

.list-inline-item {
  display: inline-block;
}

/* line 95, node_modules/bootstrap/scss/_type.scss */

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* line 106, node_modules/bootstrap/scss/_type.scss */

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 112, node_modules/bootstrap/scss/_type.scss */

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* line 117, node_modules/bootstrap/scss/_type.scss */

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

/* line 122, node_modules/bootstrap/scss/_type.scss */

.blockquote-footer::before {
  content: "\2014   \A0";
}

/* line 8, node_modules/bootstrap/scss/_images.scss */

.img-fluid,
.wp-caption img {
  max-width: 100%;
  height: auto;
}

/* line 14, node_modules/bootstrap/scss/_images.scss */

.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 0 !important;
  max-width: 100%;
  height: auto;
}

/* line 29, node_modules/bootstrap/scss/_images.scss */

.figure,
.wp-caption {
  display: inline-block;
}

/* line 34, node_modules/bootstrap/scss/_images.scss */

.figure-img,
.wp-caption img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* line 39, node_modules/bootstrap/scss/_images.scss */

.figure-caption,
.wp-caption-text {
  font-size: 90%;
  color: #6c757d;
}

/* line 2, node_modules/bootstrap/scss/_code.scss */

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

/* line 8, node_modules/bootstrap/scss/_code.scss */

a > code {
  color: inherit;
}

/* line 14, node_modules/bootstrap/scss/_code.scss */

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #ffffff;
  background-color: #212529;
  border-radius: 0.2rem;
}

/* line 22, node_modules/bootstrap/scss/_code.scss */

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

/* line 31, node_modules/bootstrap/scss/_code.scss */

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

/* line 37, node_modules/bootstrap/scss/_code.scss */

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

/* line 45, node_modules/bootstrap/scss/_code.scss */

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 6, node_modules/bootstrap/scss/_grid.scss */

.container,
.two-column-carousel .tns-outer {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  /* line 6, node_modules/bootstrap/scss/_grid.scss */

  .container,
  .two-column-carousel .tns-outer {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 6, node_modules/bootstrap/scss/_grid.scss */

  .container,
  .two-column-carousel .tns-outer {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 6, node_modules/bootstrap/scss/_grid.scss */

  .container,
  .two-column-carousel .tns-outer {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 6, node_modules/bootstrap/scss/_grid.scss */

  .container,
  .two-column-carousel .tns-outer {
    max-width: 1250px;
  }
}

/* line 18, node_modules/bootstrap/scss/_grid.scss */

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 28, node_modules/bootstrap/scss/_grid.scss */

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* line 34, node_modules/bootstrap/scss/_grid.scss */

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 38, node_modules/bootstrap/scss/_grid.scss */

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 8, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.two-column-carousel .tns-outer .tns-nav,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

/* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

/* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-1 {
  margin-left: 8.33333%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-2 {
  margin-left: 16.66667%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-3 {
  margin-left: 25%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-4 {
  margin-left: 33.33333%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-5 {
  margin-left: 41.66667%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-6 {
  margin-left: 50%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-7 {
  margin-left: 58.33333%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-8 {
  margin-left: 66.66667%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-9 {
  margin-left: 75%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-10 {
  margin-left: 83.33333%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  /* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  /* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  /* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-0 {
    margin-left: 0;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-3 {
    margin-left: 25%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-6 {
    margin-left: 50%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-9 {
    margin-left: 75%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  /* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  /* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  /* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-0 {
    margin-left: 0;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-3 {
    margin-left: 25%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-6 {
    margin-left: 50%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-9 {
    margin-left: 75%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  /* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  /* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-6,
  .two-column-carousel .tns-outer .tns-nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  /* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-0 {
    margin-left: 0;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-3 {
    margin-left: 25%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-6 {
    margin-left: 50%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-9 {
    margin-left: 75%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  /* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  /* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  /* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-0 {
    margin-left: 0;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-3 {
    margin-left: 25%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-6 {
    margin-left: 50%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-9 {
    margin-left: 75%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

/* line 5, node_modules/bootstrap/scss/_tables.scss */

.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

/* line 10, node_modules/bootstrap/scss/_tables.scss */

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 2px solid #dee2e6;
}

/* line 17, node_modules/bootstrap/scss/_tables.scss */

.table thead th {
  vertical-align: bottom;
  border-bottom: 4px solid #dee2e6;
}

/* line 22, node_modules/bootstrap/scss/_tables.scss */

.table tbody + tbody {
  border-top: 4px solid #dee2e6;
}

/* line 26, node_modules/bootstrap/scss/_tables.scss */

.table .table {
  background-color: #ffffff;
}

/* line 37, node_modules/bootstrap/scss/_tables.scss */

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

/* line 48, node_modules/bootstrap/scss/_tables.scss */

.table-bordered {
  border: 2px solid #dee2e6;
}

/* line 51, node_modules/bootstrap/scss/_tables.scss */

.table-bordered th,
.table-bordered td {
  border: 2px solid #dee2e6;
}

/* line 57, node_modules/bootstrap/scss/_tables.scss */

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 4px;
}

/* line 65, node_modules/bootstrap/scss/_tables.scss */

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

/* line 78, node_modules/bootstrap/scss/_tables.scss */

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #f0b8b9;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-primary:hover {
  background-color: #eca3a4;
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #eca3a4;
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-info:hover {
  background-color: #abdde5;
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-light:hover {
  background-color: #ececf6;
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

/* line 7, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 23, node_modules/bootstrap/scss/mixins/_table-row.scss */

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 116, node_modules/bootstrap/scss/_tables.scss */

.table .thead-dark th {
  color: #ffffff;
  background-color: #212529;
  border-color: #32383e;
}

/* line 124, node_modules/bootstrap/scss/_tables.scss */

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 132, node_modules/bootstrap/scss/_tables.scss */

.table-dark {
  color: #ffffff;
  background-color: #212529;
}

/* line 136, node_modules/bootstrap/scss/_tables.scss */

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

/* line 142, node_modules/bootstrap/scss/_tables.scss */

.table-dark.table-bordered {
  border: 0;
}

/* line 147, node_modules/bootstrap/scss/_tables.scss */

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  /* line 172, node_modules/bootstrap/scss/_tables.scss */

  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  /* line 181, node_modules/bootstrap/scss/_tables.scss */

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  /* line 172, node_modules/bootstrap/scss/_tables.scss */

  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  /* line 181, node_modules/bootstrap/scss/_tables.scss */

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  /* line 172, node_modules/bootstrap/scss/_tables.scss */

  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  /* line 181, node_modules/bootstrap/scss/_tables.scss */

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  /* line 172, node_modules/bootstrap/scss/_tables.scss */

  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  /* line 181, node_modules/bootstrap/scss/_tables.scss */

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

/* line 172, node_modules/bootstrap/scss/_tables.scss */

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* line 181, node_modules/bootstrap/scss/_tables.scss */

.table-responsive > .table-bordered {
  border: 0;
}

/* line 7, node_modules/bootstrap/scss/_forms.scss */

.form-control,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  display: block;
  width: 100%;
  height: calc(2.25rem + 4px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid #ced4da;
  border-radius: 0 !important;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 7, node_modules/bootstrap/scss/_forms.scss */

  .form-control,
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 32, node_modules/bootstrap/scss/_forms.scss */

.form-control::-ms-expand,
.comment-form input[type="text"]::-ms-expand,
.comment-form input[type="email"]::-ms-expand,
.comment-form input[type="url"]::-ms-expand,
.comment-form textarea::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 14, node_modules/bootstrap/scss/mixins/_forms.scss */

.form-control:focus,
.comment-form input:focus[type="text"],
.comment-form input:focus[type="email"],
.comment-form input:focus[type="url"],
.comment-form textarea:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: #fd4c4f;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 41, node_modules/bootstrap/scss/_forms.scss */

.form-control::-webkit-input-placeholder,
.comment-form input[type="text"]::-webkit-input-placeholder,
.comment-form input[type="email"]::-webkit-input-placeholder,
.comment-form input[type="url"]::-webkit-input-placeholder,
.comment-form textarea::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder,
.comment-form input[type="text"]:-ms-input-placeholder,
.comment-form input[type="email"]:-ms-input-placeholder,
.comment-form input[type="url"]:-ms-input-placeholder,
.comment-form textarea:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder,
.comment-form input[type="text"]::-ms-input-placeholder,
.comment-form input[type="email"]::-ms-input-placeholder,
.comment-form input[type="url"]::-ms-input-placeholder,
.comment-form textarea::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder,
.comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="url"]::placeholder,
.comment-form textarea::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* line 52, node_modules/bootstrap/scss/_forms.scss */

.form-control:disabled,
.comment-form input:disabled[type="text"],
.comment-form input:disabled[type="email"],
.comment-form input:disabled[type="url"],
.comment-form textarea:disabled,
.form-control[readonly],
.comment-form input[readonly][type="text"],
.comment-form input[readonly][type="email"],
.comment-form input[readonly][type="url"],
.comment-form textarea[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* line 61, node_modules/bootstrap/scss/_forms.scss */

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #ffffff;
}

/* line 73, node_modules/bootstrap/scss/_forms.scss */

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

/* line 86, node_modules/bootstrap/scss/_forms.scss */

.col-form-label {
  padding-top: calc(0.375rem + 2px);
  padding-bottom: calc(0.375rem + 2px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

/* line 94, node_modules/bootstrap/scss/_forms.scss */

.col-form-label-lg {
  padding-top: calc(0.5rem + 2px);
  padding-bottom: calc(0.5rem + 2px);
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 101, node_modules/bootstrap/scss/_forms.scss */

.col-form-label-sm {
  padding-top: calc(0.25rem + 2px);
  padding-bottom: calc(0.25rem + 2px);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 114, node_modules/bootstrap/scss/_forms.scss */

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 2px 0;
}

/* line 126, node_modules/bootstrap/scss/_forms.scss */

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

/* line 141, node_modules/bootstrap/scss/_forms.scss */

.form-control-sm {
  height: calc(1.8125rem + 4px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 149, node_modules/bootstrap/scss/_forms.scss */

.form-control-lg {
  height: calc(2.875rem + 4px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 159, node_modules/bootstrap/scss/_forms.scss */

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

/* line 165, node_modules/bootstrap/scss/_forms.scss */

textarea.form-control,
.comment-form textarea {
  height: auto;
}

/* line 175, node_modules/bootstrap/scss/_forms.scss */

.form-group,
.comment-form p {
  margin-bottom: 1rem;
}

/* line 179, node_modules/bootstrap/scss/_forms.scss */

.form-text {
  display: block;
  margin-top: 0.25rem;
}

/* line 189, node_modules/bootstrap/scss/_forms.scss */

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

/* line 195, node_modules/bootstrap/scss/_forms.scss */

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

/* line 207, node_modules/bootstrap/scss/_forms.scss */

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

/* line 213, node_modules/bootstrap/scss/_forms.scss */

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

/* line 218, node_modules/bootstrap/scss/_forms.scss */

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

/* line 223, node_modules/bootstrap/scss/_forms.scss */

.form-check-label {
  margin-bottom: 0;
}

/* line 227, node_modules/bootstrap/scss/_forms.scss */

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

/* line 234, node_modules/bootstrap/scss/_forms.scss */

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

/* line 30, node_modules/bootstrap/scss/mixins/_forms.scss */

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

/* line 38, node_modules/bootstrap/scss/mixins/_forms.scss */

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0 !important;
}

/* line 55, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-control:valid,
.was-validated .comment-form input:valid[type="text"],
.comment-form .was-validated input:valid[type="text"],
.was-validated .comment-form input:valid[type="email"],
.comment-form .was-validated input:valid[type="email"],
.was-validated .comment-form input:valid[type="url"],
.comment-form .was-validated input:valid[type="url"],
.was-validated .comment-form textarea:valid,
.comment-form .was-validated textarea:valid,
.form-control.is-valid,
.comment-form input.is-valid[type="text"],
.comment-form input.is-valid[type="email"],
.comment-form input.is-valid[type="url"],
.comment-form textarea.is-valid,
.was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}

/* line 59, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-control:valid:focus,
.was-validated .comment-form input:valid:focus[type="text"],
.comment-form .was-validated input:valid:focus[type="text"],
.was-validated .comment-form input:valid:focus[type="email"],
.comment-form .was-validated input:valid:focus[type="email"],
.was-validated .comment-form input:valid:focus[type="url"],
.comment-form .was-validated input:valid:focus[type="url"],
.was-validated .comment-form textarea:valid:focus,
.comment-form .was-validated textarea:valid:focus,
.form-control.is-valid:focus,
.comment-form input.is-valid:focus[type="text"],
.comment-form input.is-valid:focus[type="email"],
.comment-form input.is-valid:focus[type="url"],
.comment-form textarea.is-valid:focus,
.was-validated
  .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

/* line 64, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .comment-form input:valid[type="text"] ~ .valid-feedback,
.comment-form .was-validated input:valid[type="text"] ~ .valid-feedback,
.was-validated .comment-form input:valid[type="email"] ~ .valid-feedback,
.comment-form .was-validated input:valid[type="email"] ~ .valid-feedback,
.was-validated .comment-form input:valid[type="url"] ~ .valid-feedback,
.comment-form .was-validated input:valid[type="url"] ~ .valid-feedback,
.was-validated .comment-form textarea:valid ~ .valid-feedback,
.comment-form .was-validated textarea:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.was-validated .comment-form input:valid[type="text"] ~ .valid-tooltip,
.comment-form .was-validated input:valid[type="text"] ~ .valid-tooltip,
.was-validated .comment-form input:valid[type="email"] ~ .valid-tooltip,
.comment-form .was-validated input:valid[type="email"] ~ .valid-tooltip,
.was-validated .comment-form input:valid[type="url"] ~ .valid-tooltip,
.comment-form .was-validated input:valid[type="url"] ~ .valid-tooltip,
.was-validated .comment-form textarea:valid ~ .valid-tooltip,
.comment-form .was-validated textarea:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.comment-form input.is-valid[type="text"] ~ .valid-feedback,
.comment-form input.is-valid[type="email"] ~ .valid-feedback,
.comment-form input.is-valid[type="url"] ~ .valid-feedback,
.comment-form textarea.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.comment-form input.is-valid[type="text"] ~ .valid-tooltip,
.comment-form input.is-valid[type="email"] ~ .valid-tooltip,
.comment-form input.is-valid[type="url"] ~ .valid-tooltip,
.comment-form textarea.is-valid ~ .valid-tooltip,
.was-validated
  .custom-select:valid ~ .valid-feedback,
.was-validated
  .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 74, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 84, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

/* line 88, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 98, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

/* line 101, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}

/* line 106, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 112, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}

/* line 118, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #ffffff, 0 0 0 0 rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 1px #ffffff, 0 0 0 0 rgba(40, 167, 69, 0.25);
}

/* line 129, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

/* line 132, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-file-input:valid ~ .custom-file-label::after,
.custom-file-input.is-valid ~ .custom-file-label::after {
  border-color: inherit;
}

/* line 135, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 141, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

/* line 30, node_modules/bootstrap/scss/mixins/_forms.scss */

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

/* line 38, node_modules/bootstrap/scss/mixins/_forms.scss */

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0 !important;
}

/* line 55, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-control:invalid,
.was-validated .comment-form input:invalid[type="text"],
.comment-form .was-validated input:invalid[type="text"],
.was-validated .comment-form input:invalid[type="email"],
.comment-form .was-validated input:invalid[type="email"],
.was-validated .comment-form input:invalid[type="url"],
.comment-form .was-validated input:invalid[type="url"],
.was-validated .comment-form textarea:invalid,
.comment-form .was-validated textarea:invalid,
.form-control.is-invalid,
.comment-form input.is-invalid[type="text"],
.comment-form input.is-invalid[type="email"],
.comment-form input.is-invalid[type="url"],
.comment-form textarea.is-invalid,
.was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}

/* line 59, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-control:invalid:focus,
.was-validated .comment-form input:invalid:focus[type="text"],
.comment-form .was-validated input:invalid:focus[type="text"],
.was-validated .comment-form input:invalid:focus[type="email"],
.comment-form .was-validated input:invalid:focus[type="email"],
.was-validated .comment-form input:invalid:focus[type="url"],
.comment-form .was-validated input:invalid:focus[type="url"],
.was-validated .comment-form textarea:invalid:focus,
.comment-form .was-validated textarea:invalid:focus,
.form-control.is-invalid:focus,
.comment-form input.is-invalid:focus[type="text"],
.comment-form input.is-invalid:focus[type="email"],
.comment-form input.is-invalid:focus[type="url"],
.comment-form textarea.is-invalid:focus,
.was-validated
  .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

/* line 64, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .comment-form input:invalid[type="text"] ~ .invalid-feedback,
.comment-form .was-validated input:invalid[type="text"] ~ .invalid-feedback,
.was-validated .comment-form input:invalid[type="email"] ~ .invalid-feedback,
.comment-form .was-validated input:invalid[type="email"] ~ .invalid-feedback,
.was-validated .comment-form input:invalid[type="url"] ~ .invalid-feedback,
.comment-form .was-validated input:invalid[type="url"] ~ .invalid-feedback,
.was-validated .comment-form textarea:invalid ~ .invalid-feedback,
.comment-form .was-validated textarea:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.was-validated .comment-form input:invalid[type="text"] ~ .invalid-tooltip,
.comment-form .was-validated input:invalid[type="text"] ~ .invalid-tooltip,
.was-validated .comment-form input:invalid[type="email"] ~ .invalid-tooltip,
.comment-form .was-validated input:invalid[type="email"] ~ .invalid-tooltip,
.was-validated .comment-form input:invalid[type="url"] ~ .invalid-tooltip,
.comment-form .was-validated input:invalid[type="url"] ~ .invalid-tooltip,
.was-validated .comment-form textarea:invalid ~ .invalid-tooltip,
.comment-form .was-validated textarea:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.comment-form input.is-invalid[type="text"] ~ .invalid-feedback,
.comment-form input.is-invalid[type="email"] ~ .invalid-feedback,
.comment-form input.is-invalid[type="url"] ~ .invalid-feedback,
.comment-form textarea.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.comment-form input.is-invalid[type="text"] ~ .invalid-tooltip,
.comment-form input.is-invalid[type="email"] ~ .invalid-tooltip,
.comment-form input.is-invalid[type="url"] ~ .invalid-tooltip,
.comment-form textarea.is-invalid ~ .invalid-tooltip,
.was-validated
  .custom-select:invalid ~ .invalid-feedback,
.was-validated
  .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 74, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 84, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

/* line 88, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 98, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

/* line 101, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}

/* line 106, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 112, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}

/* line 118, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #ffffff, 0 0 0 0 rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 1px #ffffff, 0 0 0 0 rgba(220, 53, 69, 0.25);
}

/* line 129, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

/* line 132, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-file-input:invalid ~ .custom-file-label::after,
.custom-file-input.is-invalid ~ .custom-file-label::after {
  border-color: inherit;
}

/* line 135, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 141, node_modules/bootstrap/scss/mixins/_forms.scss */

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

/* line 262, node_modules/bootstrap/scss/_forms.scss */

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 270, node_modules/bootstrap/scss/_forms.scss */

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  /* line 276, node_modules/bootstrap/scss/_forms.scss */

  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }

  /* line 284, node_modules/bootstrap/scss/_forms.scss */

  .form-inline .form-group,
  .form-inline .comment-form p,
  .comment-form .form-inline p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }

  /* line 293, node_modules/bootstrap/scss/_forms.scss */

  .form-inline .form-control,
  .form-inline .comment-form input[type="text"],
  .comment-form .form-inline input[type="text"],
  .form-inline .comment-form input[type="email"],
  .comment-form .form-inline input[type="email"],
  .form-inline .comment-form input[type="url"],
  .comment-form .form-inline input[type="url"],
  .form-inline .comment-form textarea,
  .comment-form .form-inline textarea {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  /* line 300, node_modules/bootstrap/scss/_forms.scss */

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  /* line 304, node_modules/bootstrap/scss/_forms.scss */

  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }

  /* line 311, node_modules/bootstrap/scss/_forms.scss */

  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }

  /* line 318, node_modules/bootstrap/scss/_forms.scss */

  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  /* line 325, node_modules/bootstrap/scss/_forms.scss */

  .form-inline .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  /* line 329, node_modules/bootstrap/scss/_forms.scss */

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

/* line 7, node_modules/bootstrap/scss/_buttons.scss */

.btn,
.comment-form input[type="submit"] {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 2px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0 !important;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 7, node_modules/bootstrap/scss/_buttons.scss */

  .btn,
  .comment-form input[type="submit"] {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn:hover,
.comment-form input:hover[type="submit"],
.btn:focus,
.comment-form input:focus[type="submit"] {
  text-decoration: none;
}

/* line 23, node_modules/bootstrap/scss/_buttons.scss */

.btn:focus,
.comment-form input:focus[type="submit"],
.btn.focus,
.comment-form input.focus[type="submit"] {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 30, node_modules/bootstrap/scss/_buttons.scss */

.btn.disabled,
.comment-form input.disabled[type="submit"],
.btn:disabled,
.comment-form input:disabled[type="submit"] {
  opacity: 0.65;
}

/* line 37, node_modules/bootstrap/scss/_buttons.scss */

.btn:not(:disabled):not(.disabled),
.comment-form input:not(:disabled):not(.disabled)[type="submit"] {
  cursor: pointer;
}

/* line 52, node_modules/bootstrap/scss/_buttons.scss */

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

/* line 63, node_modules/bootstrap/scss/_buttons.scss */

.btn-primary {
  color: #ffffff;
  background-color: #c80205;
  border-color: #c80205;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-primary:hover {
  color: #ffffff;
  background-color: #a20204;
  border-color: #960104;
}

/* line 18, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-primary:focus,
.btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(200, 2, 5, 0.5);
          box-shadow: 0 0 0 0 rgba(200, 2, 5, 0.5);
}

/* line 29, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff;
  background-color: #c80205;
  border-color: #c80205;
}

/* line 36, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #960104;
  border-color: #890103;
}

/* line 46, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(200, 2, 5, 0.5);
          box-shadow: 0 0 0 0 rgba(200, 2, 5, 0.5);
}

/* line 63, node_modules/bootstrap/scss/_buttons.scss */

.btn-secondary,
.comment-form input[type="submit"] {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-secondary:hover,
.comment-form input:hover[type="submit"] {
  color: #ffffff;
  background-color: #5a6268;
  border-color: #545b62;
}

/* line 18, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-secondary:focus,
.comment-form input:focus[type="submit"],
.btn-secondary.focus,
.comment-form input.focus[type="submit"] {
  -webkit-box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

/* line 29, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-secondary.disabled,
.comment-form input.disabled[type="submit"],
.btn-secondary:disabled,
.comment-form input:disabled[type="submit"] {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* line 36, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-secondary:not(:disabled):not(.disabled):active,
.comment-form input:not(:disabled):not(.disabled):active[type="submit"],
.btn-secondary:not(:disabled):not(.disabled).active,
.comment-form input:not(:disabled):not(.disabled).active[type="submit"],
.show > .btn-secondary.dropdown-toggle,
.comment-form .show > input.dropdown-toggle[type="submit"] {
  color: #ffffff;
  background-color: #545b62;
  border-color: #4e555b;
}

/* line 46, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.comment-form input:not(:disabled):not(.disabled):active:focus[type="submit"],
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.comment-form input:not(:disabled):not(.disabled).active:focus[type="submit"],
.show > .btn-secondary.dropdown-toggle:focus,
.comment-form .show > input.dropdown-toggle:focus[type="submit"] {
  -webkit-box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

/* line 63, node_modules/bootstrap/scss/_buttons.scss */

.btn-success {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-success:hover {
  color: #ffffff;
  background-color: #218838;
  border-color: #1e7e34;
}

/* line 18, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-success:focus,
.btn-success.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

/* line 29, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 36, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

/* line 46, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

/* line 63, node_modules/bootstrap/scss/_buttons.scss */

.btn-info {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-info:hover {
  color: #ffffff;
  background-color: #138496;
  border-color: #117a8b;
}

/* line 18, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-info:focus,
.btn-info.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

/* line 29, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 36, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: #117a8b;
  border-color: #10707f;
}

/* line 46, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

/* line 63, node_modules/bootstrap/scss/_buttons.scss */

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

/* line 18, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-warning:focus,
.btn-warning.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

/* line 29, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 36, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

/* line 46, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

/* line 63, node_modules/bootstrap/scss/_buttons.scss */

.btn-danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-danger:hover {
  color: #ffffff;
  background-color: #c82333;
  border-color: #bd2130;
}

/* line 18, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-danger:focus,
.btn-danger.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

/* line 29, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 36, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

/* line 46, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

/* line 63, node_modules/bootstrap/scss/_buttons.scss */

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

/* line 18, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-light:focus,
.btn-light.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

/* line 29, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 36, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

/* line 46, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

/* line 63, node_modules/bootstrap/scss/_buttons.scss */

.btn-dark {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-dark:hover {
  color: #ffffff;
  background-color: #23272b;
  border-color: #1d2124;
}

/* line 18, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-dark:focus,
.btn-dark.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

/* line 29, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-dark.disabled,
.btn-dark:disabled {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 36, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #1d2124;
  border-color: #171a1d;
}

/* line 46, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

/* line 69, node_modules/bootstrap/scss/_buttons.scss */

.btn-outline-primary {
  color: #c80205;
  background-color: transparent;
  background-image: none;
  border-color: #c80205;
}

/* line 63, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #c80205;
  border-color: #c80205;
}

/* line 69, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(200, 2, 5, 0.5);
          box-shadow: 0 0 0 0 rgba(200, 2, 5, 0.5);
}

/* line 74, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #c80205;
  background-color: transparent;
}

/* line 80, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #c80205;
  border-color: #c80205;
}

/* line 87, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(200, 2, 5, 0.5);
          box-shadow: 0 0 0 0 rgba(200, 2, 5, 0.5);
}

/* line 69, node_modules/bootstrap/scss/_buttons.scss */

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

/* line 63, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-secondary:hover {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* line 69, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

/* line 74, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

/* line 80, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* line 87, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

/* line 69, node_modules/bootstrap/scss/_buttons.scss */

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

/* line 63, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-success:hover {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 69, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-success:focus,
.btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

/* line 74, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

/* line 80, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 87, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

/* line 69, node_modules/bootstrap/scss/_buttons.scss */

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

/* line 63, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-info:hover {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 69, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-info:focus,
.btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

/* line 74, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

/* line 80, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 87, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

/* line 69, node_modules/bootstrap/scss/_buttons.scss */

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

/* line 63, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 69, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

/* line 74, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

/* line 80, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 87, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

/* line 69, node_modules/bootstrap/scss/_buttons.scss */

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

/* line 63, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-danger:hover {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 69, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

/* line 74, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

/* line 80, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 87, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

/* line 69, node_modules/bootstrap/scss/_buttons.scss */

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

/* line 63, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 69, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-light:focus,
.btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

/* line 74, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

/* line 80, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 87, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

/* line 69, node_modules/bootstrap/scss/_buttons.scss */

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

/* line 63, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 69, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

/* line 74, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

/* line 80, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 87, node_modules/bootstrap/scss/mixins/_buttons.scss */

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

/* line 80, node_modules/bootstrap/scss/_buttons.scss */

.btn-link {
  font-weight: 400;
  color: #c80205;
  background-color: transparent;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-link:hover {
  color: #7c0103;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

/* line 92, node_modules/bootstrap/scss/_buttons.scss */

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 99, node_modules/bootstrap/scss/_buttons.scss */

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

/* line 113, node_modules/bootstrap/scss/_buttons.scss */

.btn-lg,
.btn-group-lg > .btn,
.comment-form .btn-group-lg > input[type="submit"] {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 117, node_modules/bootstrap/scss/_buttons.scss */

.btn-sm,
.btn-group-sm > .btn,
.comment-form .btn-group-sm > input[type="submit"] {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 126, node_modules/bootstrap/scss/_buttons.scss */

.btn-block {
  display: block;
  width: 100%;
}

/* line 131, node_modules/bootstrap/scss/_buttons.scss */

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

/* line 140, node_modules/bootstrap/scss/_buttons.scss */

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* line 3, node_modules/bootstrap/scss/_transitions.scss */

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 3, node_modules/bootstrap/scss/_transitions.scss */

  .fade {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 6, node_modules/bootstrap/scss/_transitions.scss */

.fade:not(.show) {
  opacity: 0;
}

/* line 12, node_modules/bootstrap/scss/_transitions.scss */

.collapse:not(.show) {
  display: none;
}

/* line 17, node_modules/bootstrap/scss/_transitions.scss */

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 17, node_modules/bootstrap/scss/_transitions.scss */

  .collapsing {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 2, node_modules/bootstrap/scss/_dropdown.scss */

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

/* line 30, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* line 62, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 15, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 0 !important;
}

/* line 36, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-menu-right {
  right: 0;
  left: auto;
}

/* line 44, node_modules/bootstrap/scss/_dropdown.scss */

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

/* line 30, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

/* line 62, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 57, node_modules/bootstrap/scss/_dropdown.scss */

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

/* line 30, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

/* line 62, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 67, node_modules/bootstrap/scss/_dropdown.scss */

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

/* line 74, node_modules/bootstrap/scss/_dropdown.scss */

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

/* line 30, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

/* line 47, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropleft .dropdown-toggle::after {
  display: none;
}

/* line 51, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

/* line 62, node_modules/bootstrap/scss/mixins/_caret.scss */

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 84, node_modules/bootstrap/scss/_dropdown.scss */

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

/* line 93, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

/* line 104, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

/* line 111, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 129, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-item.active,
.dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
  background-color: #c80205;
}

/* line 136, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

/* line 147, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-menu.show {
  display: block;
}

/* line 152, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

/* line 162, node_modules/bootstrap/scss/_dropdown.scss */

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

/* line 4, node_modules/bootstrap/scss/_button-group.scss */

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

/* line 10, node_modules/bootstrap/scss/_button-group.scss */

.btn-group > .btn,
.comment-form .btn-group > input[type="submit"],
.btn-group-vertical > .btn,
.comment-form .btn-group-vertical > input[type="submit"] {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.btn-group > .btn:hover,
.comment-form .btn-group > input:hover[type="submit"],
.btn-group-vertical > .btn:hover,
.comment-form .btn-group-vertical > input:hover[type="submit"] {
  z-index: 1;
}

/* line 19, node_modules/bootstrap/scss/_button-group.scss */

.btn-group > .btn:focus,
.comment-form .btn-group > input:focus[type="submit"],
.btn-group > .btn:active,
.comment-form .btn-group > input:active[type="submit"],
.btn-group > .btn.active,
.comment-form .btn-group > input.active[type="submit"],
.btn-group-vertical > .btn:focus,
.comment-form .btn-group-vertical > input:focus[type="submit"],
.btn-group-vertical > .btn:active,
.comment-form .btn-group-vertical > input:active[type="submit"],
.btn-group-vertical > .btn.active,
.comment-form .btn-group-vertical > input.active[type="submit"] {
  z-index: 1;
}

/* line 27, node_modules/bootstrap/scss/_button-group.scss */

.btn-group .btn + .btn,
.btn-group .comment-form input[type="submit"] + .btn,
.comment-form .btn-group input[type="submit"] + .btn,
.btn-group .comment-form .btn + input[type="submit"],
.comment-form .btn-group .btn + input[type="submit"],
.btn-group .comment-form input[type="submit"] + input[type="submit"],
.comment-form .btn-group input[type="submit"] + input[type="submit"],
.btn-group .btn + .btn-group,
.btn-group .comment-form input[type="submit"] + .btn-group,
.comment-form .btn-group input[type="submit"] + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .comment-form .btn-group + input[type="submit"],
.comment-form .btn-group .btn-group + input[type="submit"],
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .comment-form input[type="submit"] + .btn,
.comment-form .btn-group-vertical input[type="submit"] + .btn,
.btn-group-vertical .comment-form .btn + input[type="submit"],
.comment-form .btn-group-vertical .btn + input[type="submit"],
.btn-group-vertical .comment-form input[type="submit"] + input[type="submit"],
.comment-form .btn-group-vertical input[type="submit"] + input[type="submit"],
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .comment-form input[type="submit"] + .btn-group,
.comment-form .btn-group-vertical input[type="submit"] + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .comment-form .btn-group + input[type="submit"],
.comment-form .btn-group-vertical .btn-group + input[type="submit"],
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -2px;
}

/* line 36, node_modules/bootstrap/scss/_button-group.scss */

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 41, node_modules/bootstrap/scss/_button-group.scss */

.btn-toolbar .input-group {
  width: auto;
}

/* line 47, node_modules/bootstrap/scss/_button-group.scss */

.btn-group > .btn:first-child,
.comment-form .btn-group > input:first-child[type="submit"] {
  margin-left: 0;
}

/* line 52, node_modules/bootstrap/scss/_button-group.scss */

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form .btn-group > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.btn-group > .btn-group:not(:last-child) > .btn,
.comment-form .btn-group > .btn-group:not(:last-child) > input[type="submit"] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 57, node_modules/bootstrap/scss/_button-group.scss */

.btn-group > .btn:not(:first-child),
.comment-form .btn-group > input:not(:first-child)[type="submit"],
.btn-group > .btn-group:not(:first-child) > .btn,
.comment-form .btn-group > .btn-group:not(:first-child) > input[type="submit"] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 75, node_modules/bootstrap/scss/_button-group.scss */

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

/* line 79, node_modules/bootstrap/scss/_button-group.scss */

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

/* line 85, node_modules/bootstrap/scss/_button-group.scss */

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

/* line 90, node_modules/bootstrap/scss/_button-group.scss */

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split,
.comment-form .btn-group-sm > input[type="submit"] + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

/* line 95, node_modules/bootstrap/scss/_button-group.scss */

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split,
.comment-form .btn-group-lg > input[type="submit"] + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* line 117, node_modules/bootstrap/scss/_button-group.scss */

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 122, node_modules/bootstrap/scss/_button-group.scss */

.btn-group-vertical .btn,
.btn-group-vertical .comment-form input[type="submit"],
.comment-form .btn-group-vertical input[type="submit"],
.btn-group-vertical .btn-group {
  width: 100%;
}

/* line 127, node_modules/bootstrap/scss/_button-group.scss */

.btn-group-vertical > .btn + .btn,
.comment-form .btn-group-vertical > input[type="submit"] + .btn,
.comment-form .btn-group-vertical > .btn + input[type="submit"],
.comment-form .btn-group-vertical > input[type="submit"] + input[type="submit"],
.btn-group-vertical > .btn + .btn-group,
.comment-form .btn-group-vertical > input[type="submit"] + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.comment-form .btn-group-vertical > .btn-group + input[type="submit"],
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -2px;
  margin-left: 0;
}

/* line 136, node_modules/bootstrap/scss/_button-group.scss */

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form .btn-group-vertical > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.comment-form .btn-group-vertical > .btn-group:not(:last-child) > input[type="submit"] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 141, node_modules/bootstrap/scss/_button-group.scss */

.btn-group-vertical > .btn:not(:first-child),
.comment-form .btn-group-vertical > input:not(:first-child)[type="submit"],
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.comment-form .btn-group-vertical > .btn-group:not(:first-child) > input[type="submit"] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 161, node_modules/bootstrap/scss/_button-group.scss */

.btn-group-toggle > .btn,
.comment-form .btn-group-toggle > input[type="submit"],
.btn-group-toggle > .btn-group > .btn,
.comment-form .btn-group-toggle > .btn-group > input[type="submit"] {
  margin-bottom: 0;
}

/* line 165, node_modules/bootstrap/scss/_button-group.scss */

.btn-group-toggle > .btn input[type="radio"],
.comment-form .btn-group-toggle > input[type="submit"] input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.comment-form .btn-group-toggle > input[type="submit"] input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.comment-form .btn-group-toggle > .btn-group > input[type="submit"] input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.comment-form .btn-group-toggle > .btn-group > input[type="submit"] input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, node_modules/bootstrap/scss/_input-group.scss */

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

/* line 14, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .form-control,
.comment-form .input-group > input[type="text"],
.comment-form .input-group > input[type="email"],
.comment-form .input-group > input[type="url"],
.comment-form .input-group > textarea,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

/* line 24, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .form-control + .form-control,
.comment-form .input-group > input[type="text"] + .form-control,
.comment-form .input-group > input[type="email"] + .form-control,
.comment-form .input-group > input[type="url"] + .form-control,
.comment-form .input-group > textarea + .form-control,
.comment-form .input-group > .form-control + input[type="text"],
.comment-form .input-group > input[type="text"] + input[type="text"],
.comment-form .input-group > input[type="email"] + input[type="text"],
.comment-form .input-group > input[type="url"] + input[type="text"],
.comment-form .input-group > textarea + input[type="text"],
.comment-form .input-group > .form-control + input[type="email"],
.comment-form .input-group > input[type="text"] + input[type="email"],
.comment-form .input-group > input[type="email"] + input[type="email"],
.comment-form .input-group > input[type="url"] + input[type="email"],
.comment-form .input-group > textarea + input[type="email"],
.comment-form .input-group > .form-control + input[type="url"],
.comment-form .input-group > input[type="text"] + input[type="url"],
.comment-form .input-group > input[type="email"] + input[type="url"],
.comment-form .input-group > input[type="url"] + input[type="url"],
.comment-form .input-group > textarea + input[type="url"],
.comment-form .input-group > .form-control + textarea,
.comment-form .input-group > input[type="text"] + textarea,
.comment-form .input-group > input[type="email"] + textarea,
.comment-form .input-group > input[type="url"] + textarea,
.comment-form .input-group > textarea + textarea,
.input-group > .form-control + .custom-select,
.comment-form .input-group > input[type="text"] + .custom-select,
.comment-form .input-group > input[type="email"] + .custom-select,
.comment-form .input-group > input[type="url"] + .custom-select,
.comment-form .input-group > textarea + .custom-select,
.input-group > .form-control + .custom-file,
.comment-form .input-group > input[type="text"] + .custom-file,
.comment-form .input-group > input[type="email"] + .custom-file,
.comment-form .input-group > input[type="url"] + .custom-file,
.comment-form .input-group > textarea + .custom-file,
.input-group > .custom-select + .form-control,
.comment-form .input-group > .custom-select + input[type="text"],
.comment-form .input-group > .custom-select + input[type="email"],
.comment-form .input-group > .custom-select + input[type="url"],
.comment-form .input-group > .custom-select + textarea,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.comment-form .input-group > .custom-file + input[type="text"],
.comment-form .input-group > .custom-file + input[type="email"],
.comment-form .input-group > .custom-file + input[type="url"],
.comment-form .input-group > .custom-file + textarea,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -2px;
}

/* line 32, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .form-control:focus,
.comment-form .input-group > input:focus[type="text"],
.comment-form .input-group > input:focus[type="email"],
.comment-form .input-group > input:focus[type="url"],
.comment-form .input-group > textarea:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

/* line 39, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

/* line 45, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .form-control:not(:last-child),
.comment-form .input-group > input:not(:last-child)[type="text"],
.comment-form .input-group > input:not(:last-child)[type="email"],
.comment-form .input-group > input:not(:last-child)[type="url"],
.comment-form .input-group > textarea:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 46, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .form-control:not(:first-child),
.comment-form .input-group > input:not(:first-child)[type="text"],
.comment-form .input-group > input:not(:first-child)[type="email"],
.comment-form .input-group > input:not(:first-child)[type="url"],
.comment-form .input-group > textarea:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 51, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 55, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 57, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 68, node_modules/bootstrap/scss/_input-group.scss */

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 75, node_modules/bootstrap/scss/_input-group.scss */

.input-group-prepend .btn,
.input-group-prepend .comment-form input[type="submit"],
.comment-form .input-group-prepend input[type="submit"],
.input-group-append .btn,
.input-group-append .comment-form input[type="submit"],
.comment-form .input-group-append input[type="submit"] {
  position: relative;
  z-index: 2;
}

/* line 80, node_modules/bootstrap/scss/_input-group.scss */

.input-group-prepend .btn + .btn,
.input-group-prepend .comment-form input[type="submit"] + .btn,
.comment-form .input-group-prepend input[type="submit"] + .btn,
.input-group-prepend .comment-form .btn + input[type="submit"],
.comment-form .input-group-prepend .btn + input[type="submit"],
.input-group-prepend .comment-form input[type="submit"] + input[type="submit"],
.comment-form .input-group-prepend input[type="submit"] + input[type="submit"],
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .comment-form input[type="submit"] + .input-group-text,
.comment-form .input-group-prepend input[type="submit"] + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .comment-form .input-group-text + input[type="submit"],
.comment-form .input-group-prepend .input-group-text + input[type="submit"],
.input-group-append .btn + .btn,
.input-group-append .comment-form input[type="submit"] + .btn,
.comment-form .input-group-append input[type="submit"] + .btn,
.input-group-append .comment-form .btn + input[type="submit"],
.comment-form .input-group-append .btn + input[type="submit"],
.input-group-append .comment-form input[type="submit"] + input[type="submit"],
.comment-form .input-group-append input[type="submit"] + input[type="submit"],
.input-group-append .btn + .input-group-text,
.input-group-append .comment-form input[type="submit"] + .input-group-text,
.comment-form .input-group-append input[type="submit"] + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .comment-form .input-group-text + input[type="submit"],
.comment-form .input-group-append .input-group-text + input[type="submit"] {
  margin-left: -2px;
}

/* line 88, node_modules/bootstrap/scss/_input-group.scss */

.input-group-prepend {
  margin-right: -2px;
}

/* line 89, node_modules/bootstrap/scss/_input-group.scss */

.input-group-append {
  margin-left: -2px;
}

/* line 97, node_modules/bootstrap/scss/_input-group.scss */

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 2px solid #ced4da;
  border-radius: 0 !important;
}

/* line 113, node_modules/bootstrap/scss/_input-group.scss */

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

/* line 125, node_modules/bootstrap/scss/_input-group.scss */

.input-group-lg > .form-control,
.comment-form .input-group-lg > input[type="text"],
.comment-form .input-group-lg > input[type="email"],
.comment-form .input-group-lg > input[type="url"],
.comment-form .input-group-lg > textarea,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.comment-form .input-group-lg > .input-group-prepend > input[type="submit"],
.input-group-lg > .input-group-append > .btn,
.comment-form .input-group-lg > .input-group-append > input[type="submit"] {
  height: calc(2.875rem + 4px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 137, node_modules/bootstrap/scss/_input-group.scss */

.input-group-sm > .form-control,
.comment-form .input-group-sm > input[type="text"],
.comment-form .input-group-sm > input[type="email"],
.comment-form .input-group-sm > input[type="url"],
.comment-form .input-group-sm > textarea,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.comment-form .input-group-sm > .input-group-prepend > input[type="submit"],
.input-group-sm > .input-group-append > .btn,
.comment-form .input-group-sm > .input-group-append > input[type="submit"] {
  height: calc(1.8125rem + 4px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 157, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .input-group-prepend > .btn,
.comment-form .input-group > .input-group-prepend > input[type="submit"],
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.comment-form .input-group > .input-group-append:not(:last-child) > input[type="submit"],
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form .input-group > .input-group-append:last-child > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 166, node_modules/bootstrap/scss/_input-group.scss */

.input-group > .input-group-append > .btn,
.comment-form .input-group > .input-group-append > input[type="submit"],
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.comment-form .input-group > .input-group-prepend:not(:first-child) > input[type="submit"],
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.comment-form .input-group > .input-group-prepend:first-child > input:not(:first-child)[type="submit"],
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 10, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

/* line 17, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

/* line 22, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* line 27, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-input:checked ~ .custom-control-label::before {
  color: #ffffff;
  background-color: #c80205;
}

/* line 33, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #ffffff, none;
          box-shadow: 0 0 0 1px #ffffff, none;
}

/* line 38, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-input:active ~ .custom-control-label::before {
  color: #ffffff;
  background-color: #fe7f81;
}

/* line 45, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

/* line 48, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

/* line 59, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-label {
  position: relative;
  margin-bottom: 0;
}

/* line 64, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #dee2e6;
}

/* line 79, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/* line 99, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-checkbox .custom-control-label::before {
  border-radius: 0 !important;
}

/* line 104, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #c80205;
}

/* line 107, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

/* line 113, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #c80205;
}

/* line 117, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23ffffff' d='M0 2h4'/%3E%3C/svg%3E");
}

/* line 123, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(200, 2, 5, 0.5);
}

/* line 126, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(200, 2, 5, 0.5);
}

/* line 137, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

/* line 142, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #c80205;
}

/* line 145, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* line 151, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(200, 2, 5, 0.5);
}

/* line 164, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 4px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #ffffff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 2px solid #ced4da;
  border-radius: 0 !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 183, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-select:focus {
  border-color: #fd4c4f;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(253, 76, 79, 0.5);
          box-shadow: 0 0 0 0 rgba(253, 76, 79, 0.5);
}

/* line 192, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #ffffff;
}

/* line 203, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

/* line 210, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

/* line 216, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-select::-ms-expand {
  opacity: 0;
}

/* line 221, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-select-sm {
  height: calc(1.8125rem + 4px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

/* line 228, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-select-lg {
  height: calc(2.875rem + 4px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

/* line 240, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 4px);
  margin-bottom: 0;
}

/* line 248, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 4px);
  margin: 0;
  opacity: 0;
}

/* line 256, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-file-input:focus ~ .custom-file-label {
  border-color: #fd4c4f;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 260, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #fd4c4f;
}

/* line 265, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

/* line 270, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

/* line 276, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 4px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  border: 2px solid #ced4da;
  border-radius: 0 !important;
}

/* line 291, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 2px solid #ced4da;
  border-radius: 0 0 !important 0 !important 0;
}

/* line 315, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 321, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range:focus {
  outline: none;
}

/* line 326, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #ffffff, none;
          box-shadow: 0 0 0 1px #ffffff, none;
}

/* line 327, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #ffffff, none;
}

/* line 328, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #ffffff, none;
}

/* line 331, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-moz-focus-outer {
  border: 0;
}

/* line 335, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #c80205;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 335, node_modules/bootstrap/scss/_custom-forms.scss */

  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 346, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-webkit-slider-thumb:active {
  background-color: #fe7f81;
}

/* line 351, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

/* line 362, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #c80205;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 362, node_modules/bootstrap/scss/_custom-forms.scss */

  .custom-range::-moz-range-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 372, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-moz-range-thumb:active {
  background-color: #fe7f81;
}

/* line 377, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

/* line 388, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  background-color: #c80205;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 388, node_modules/bootstrap/scss/_custom-forms.scss */

  .custom-range::-ms-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 401, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-ms-thumb:active {
  background-color: #fe7f81;
}

/* line 406, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

/* line 417, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 422, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 429, node_modules/bootstrap/scss/_custom-forms.scss */

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 429, node_modules/bootstrap/scss/_custom-forms.scss */

  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 6, node_modules/bootstrap/scss/_nav.scss */

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 14, node_modules/bootstrap/scss/_nav.scss */

.nav-link,
.header .nav a {
  display: block;
  padding: 0.5rem 1rem;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.nav-link:hover,
.header .nav a:hover,
.nav-link:focus,
.header .nav a:focus {
  text-decoration: none;
}

/* line 23, node_modules/bootstrap/scss/_nav.scss */

.nav-link.disabled,
.header .nav a.disabled {
  color: #6c757d;
}

/* line 32, node_modules/bootstrap/scss/_nav.scss */

.nav-tabs {
  border-bottom: 2px solid #dee2e6;
}

/* line 35, node_modules/bootstrap/scss/_nav.scss */

.nav-tabs .nav-item,
.nav-tabs .header .nav li,
.header .nav .nav-tabs li {
  margin-bottom: -2px;
}

/* line 39, node_modules/bootstrap/scss/_nav.scss */

.nav-tabs .nav-link,
.nav-tabs .header .nav a,
.header .nav .nav-tabs a {
  border: 2px solid transparent;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.nav-tabs .nav-link:hover,
.nav-tabs .header .nav a:hover,
.header .nav .nav-tabs a:hover,
.nav-tabs .nav-link:focus,
.nav-tabs .header .nav a:focus,
.header .nav .nav-tabs a:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

/* line 47, node_modules/bootstrap/scss/_nav.scss */

.nav-tabs .nav-link.disabled,
.nav-tabs .header .nav a.disabled,
.header .nav .nav-tabs a.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

/* line 54, node_modules/bootstrap/scss/_nav.scss */

.nav-tabs .nav-link.active,
.nav-tabs .header .nav a.active,
.header .nav .nav-tabs a.active,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .header .nav li.show .nav-link,
.header .nav .nav-tabs li.show .nav-link,
.nav-tabs .nav-item.show .header .nav a,
.header .nav .nav-tabs .nav-item.show a,
.nav-tabs .header .nav li.show a,
.header .nav .nav-tabs li.show a {
  color: #495057;
  background-color: #ffffff;
  border-color: #dee2e6 #dee2e6 #ffffff;
}

/* line 61, node_modules/bootstrap/scss/_nav.scss */

.nav-tabs .dropdown-menu {
  margin-top: -2px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 75, node_modules/bootstrap/scss/_nav.scss */

.nav-pills .nav-link,
.nav-pills .header .nav a,
.header .nav .nav-pills a {
  border-radius: 0 !important;
}

/* line 79, node_modules/bootstrap/scss/_nav.scss */

.nav-pills .nav-link.active,
.nav-pills .header .nav a.active,
.header .nav .nav-pills a.active,
.nav-pills .show > .nav-link,
.nav-pills .header .nav .show > a,
.header .nav .nav-pills .show > a {
  color: #ffffff;
  background-color: #c80205;
}

/* line 92, node_modules/bootstrap/scss/_nav.scss */

.nav-fill .nav-item,
.nav-fill .header .nav li,
.header .nav .nav-fill li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

/* line 99, node_modules/bootstrap/scss/_nav.scss */

.nav-justified .nav-item,
.nav-justified .header .nav li,
.header .nav .nav-justified li {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

/* line 112, node_modules/bootstrap/scss/_nav.scss */

.tab-content > .tab-pane {
  display: none;
}

/* line 115, node_modules/bootstrap/scss/_nav.scss */

.tab-content > .active {
  display: block;
}

/* line 18, node_modules/bootstrap/scss/_navbar.scss */

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}

/* line 28, node_modules/bootstrap/scss/_navbar.scss */

.navbar > .container,
.two-column-carousel .navbar > .tns-outer,
.navbar > .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 42, node_modules/bootstrap/scss/_navbar.scss */

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

/* line 61, node_modules/bootstrap/scss/_navbar.scss */

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 68, node_modules/bootstrap/scss/_navbar.scss */

.navbar-nav .nav-link,
.navbar-nav .header .nav a,
.header .nav .navbar-nav a {
  padding-right: 0;
  padding-left: 0;
}

/* line 73, node_modules/bootstrap/scss/_navbar.scss */

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

/* line 84, node_modules/bootstrap/scss/_navbar.scss */

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 99, node_modules/bootstrap/scss/_navbar.scss */

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 108, node_modules/bootstrap/scss/_navbar.scss */

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 0 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

/* line 121, node_modules/bootstrap/scss/_navbar.scss */

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 128, node_modules/bootstrap/scss/_navbar.scss */

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  /* line 147, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-sm > .container,
  .two-column-carousel .navbar-expand-sm > .tns-outer,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  /* line 145, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  /* line 158, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 161, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  /* line 165, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-sm .navbar-nav .nav-link,
  .navbar-expand-sm .navbar-nav .header .nav a,
  .header .nav .navbar-expand-sm .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  /* line 172, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-sm > .container,
  .two-column-carousel .navbar-expand-sm > .tns-outer,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  /* line 177, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  /* line 184, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  /* line 147, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-md > .container,
  .two-column-carousel .navbar-expand-md > .tns-outer,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  /* line 145, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  /* line 158, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 161, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  /* line 165, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-md .navbar-nav .nav-link,
  .navbar-expand-md .navbar-nav .header .nav a,
  .header .nav .navbar-expand-md .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  /* line 172, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-md > .container,
  .two-column-carousel .navbar-expand-md > .tns-outer,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  /* line 177, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  /* line 184, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  /* line 147, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-lg > .container,
  .two-column-carousel .navbar-expand-lg > .tns-outer,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  /* line 145, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  /* line 158, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 161, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  /* line 165, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-lg .navbar-nav .nav-link,
  .navbar-expand-lg .navbar-nav .header .nav a,
  .header .nav .navbar-expand-lg .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  /* line 172, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-lg > .container,
  .two-column-carousel .navbar-expand-lg > .tns-outer,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  /* line 177, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  /* line 184, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  /* line 147, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-xl > .container,
  .two-column-carousel .navbar-expand-xl > .tns-outer,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 145, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  /* line 158, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 161, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  /* line 165, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-xl .navbar-nav .nav-link,
  .navbar-expand-xl .navbar-nav .header .nav a,
  .header .nav .navbar-expand-xl .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  /* line 172, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-xl > .container,
  .two-column-carousel .navbar-expand-xl > .tns-outer,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  /* line 177, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  /* line 184, node_modules/bootstrap/scss/_navbar.scss */

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

/* line 145, node_modules/bootstrap/scss/_navbar.scss */

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 147, node_modules/bootstrap/scss/_navbar.scss */

.navbar-expand > .container,
.two-column-carousel .navbar-expand > .tns-outer,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

/* line 158, node_modules/bootstrap/scss/_navbar.scss */

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* line 161, node_modules/bootstrap/scss/_navbar.scss */

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

/* line 165, node_modules/bootstrap/scss/_navbar.scss */

.navbar-expand .navbar-nav .nav-link,
.navbar-expand .navbar-nav .header .nav a,
.header .nav .navbar-expand .navbar-nav a {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* line 172, node_modules/bootstrap/scss/_navbar.scss */

.navbar-expand > .container,
.two-column-carousel .navbar-expand > .tns-outer,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

/* line 177, node_modules/bootstrap/scss/_navbar.scss */

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

/* line 184, node_modules/bootstrap/scss/_navbar.scss */

.navbar-expand .navbar-toggler {
  display: none;
}

/* line 199, node_modules/bootstrap/scss/_navbar.scss */

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 208, node_modules/bootstrap/scss/_navbar.scss */

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .header .nav a,
.header .nav .navbar-light .navbar-nav a {
  color: rgba(0, 0, 0, 0.5);
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .header .nav a:hover,
.header .nav .navbar-light .navbar-nav a:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .header .nav a:focus,
.header .nav .navbar-light .navbar-nav a:focus {
  color: rgba(0, 0, 0, 0.7);
}

/* line 215, node_modules/bootstrap/scss/_navbar.scss */

.navbar-light .navbar-nav .nav-link.disabled,
.navbar-light .navbar-nav .header .nav a.disabled,
.header .nav .navbar-light .navbar-nav a.disabled {
  color: rgba(0, 0, 0, 0.3);
}

/* line 220, node_modules/bootstrap/scss/_navbar.scss */

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .header .nav .show > a,
.header .nav .navbar-light .navbar-nav .show > a,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .header .nav .active > a,
.header .nav .navbar-light .navbar-nav .active > a,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .header .nav a.show,
.header .nav .navbar-light .navbar-nav a.show,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .header .nav a.active,
.header .nav .navbar-light .navbar-nav a.active {
  color: rgba(0, 0, 0, 0.9);
}

/* line 228, node_modules/bootstrap/scss/_navbar.scss */

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 233, node_modules/bootstrap/scss/_navbar.scss */

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* line 237, node_modules/bootstrap/scss/_navbar.scss */

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

/* line 239, node_modules/bootstrap/scss/_navbar.scss */

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 251, node_modules/bootstrap/scss/_navbar.scss */

.navbar-dark .navbar-brand {
  color: #ffffff;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #ffffff;
}

/* line 260, node_modules/bootstrap/scss/_navbar.scss */

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .header .nav a,
.header .nav .navbar-dark .navbar-nav a {
  color: rgba(255, 255, 255, 0.5);
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .header .nav a:hover,
.header .nav .navbar-dark .navbar-nav a:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .header .nav a:focus,
.header .nav .navbar-dark .navbar-nav a:focus {
  color: rgba(255, 255, 255, 0.75);
}

/* line 267, node_modules/bootstrap/scss/_navbar.scss */

.navbar-dark .navbar-nav .nav-link.disabled,
.navbar-dark .navbar-nav .header .nav a.disabled,
.header .nav .navbar-dark .navbar-nav a.disabled {
  color: rgba(255, 255, 255, 0.25);
}

/* line 272, node_modules/bootstrap/scss/_navbar.scss */

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .header .nav .show > a,
.header .nav .navbar-dark .navbar-nav .show > a,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .header .nav .active > a,
.header .nav .navbar-dark .navbar-nav .active > a,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .header .nav a.show,
.header .nav .navbar-dark .navbar-nav a.show,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .header .nav a.active,
.header .nav .navbar-dark .navbar-nav a.active {
  color: #ffffff;
}

/* line 280, node_modules/bootstrap/scss/_navbar.scss */

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 285, node_modules/bootstrap/scss/_navbar.scss */

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* line 289, node_modules/bootstrap/scss/_navbar.scss */

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

/* line 291, node_modules/bootstrap/scss/_navbar.scss */

.navbar-dark .navbar-text a {
  color: #ffffff;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #ffffff;
}

/* line 5, node_modules/bootstrap/scss/_card.scss */

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 2px solid rgba(0, 0, 0, 0.125);
  border-radius: 0 !important;
}

/* line 16, node_modules/bootstrap/scss/_card.scss */

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

/* line 22, node_modules/bootstrap/scss/_card.scss */

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/* line 28, node_modules/bootstrap/scss/_card.scss */

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* line 34, node_modules/bootstrap/scss/_card.scss */

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

/* line 41, node_modules/bootstrap/scss/_card.scss */

.card-title {
  margin-bottom: 0.75rem;
}

/* line 45, node_modules/bootstrap/scss/_card.scss */

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

/* line 50, node_modules/bootstrap/scss/_card.scss */

.card-text:last-child {
  margin-bottom: 0;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

.card-link:hover {
  text-decoration: none;
}

/* line 59, node_modules/bootstrap/scss/_card.scss */

.card-link + .card-link {
  margin-left: 1.25rem;
}

/* line 68, node_modules/bootstrap/scss/_card.scss */

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 2px solid rgba(0, 0, 0, 0.125);
}

/* line 74, node_modules/bootstrap/scss/_card.scss */

.card-header:first-child {
  border-radius: calc(0 !important - 2px) calc(0 !important - 2px) 0 0;
}

/* line 79, node_modules/bootstrap/scss/_card.scss */

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

/* line 85, node_modules/bootstrap/scss/_card.scss */

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 2px solid rgba(0, 0, 0, 0.125);
}

/* line 90, node_modules/bootstrap/scss/_card.scss */

.card-footer:last-child {
  border-radius: 0 0 calc(0 !important - 2px) calc(0 !important - 2px);
}

/* line 100, node_modules/bootstrap/scss/_card.scss */

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

/* line 107, node_modules/bootstrap/scss/_card.scss */

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

/* line 113, node_modules/bootstrap/scss/_card.scss */

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

/* line 122, node_modules/bootstrap/scss/_card.scss */

.card-img {
  width: 100%;
  border-radius: calc(0 !important - 2px);
}

/* line 128, node_modules/bootstrap/scss/_card.scss */

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0 !important - 2px);
  border-top-right-radius: calc(0 !important - 2px);
}

/* line 133, node_modules/bootstrap/scss/_card.scss */

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0 !important - 2px);
  border-bottom-left-radius: calc(0 !important - 2px);
}

/* line 141, node_modules/bootstrap/scss/_card.scss */

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 145, node_modules/bootstrap/scss/_card.scss */

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 141, node_modules/bootstrap/scss/_card.scss */

  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  /* line 154, node_modules/bootstrap/scss/_card.scss */

  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

/* line 171, node_modules/bootstrap/scss/_card.scss */

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 177, node_modules/bootstrap/scss/_card.scss */

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 171, node_modules/bootstrap/scss/_card.scss */

  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }

  /* line 185, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }

  /* line 190, node_modules/bootstrap/scss/_card.scss */

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

  /* line 197, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  /* line 200, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }

  /* line 204, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }

  /* line 210, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  /* line 213, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }

  /* line 217, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }

  /* line 223, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:only-child {
    border-radius: 0 !important;
  }

  /* line 226, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  /* line 230, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  /* line 236, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }

  /* line 239, node_modules/bootstrap/scss/_card.scss */

  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

/* line 257, node_modules/bootstrap/scss/_card.scss */

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  /* line 256, node_modules/bootstrap/scss/_card.scss */

  .card-columns {
    -webkit-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  /* line 267, node_modules/bootstrap/scss/_card.scss */

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/* line 280, node_modules/bootstrap/scss/_card.scss */

.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

/* line 286, node_modules/bootstrap/scss/_card.scss */

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

/* line 291, node_modules/bootstrap/scss/_card.scss */

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 297, node_modules/bootstrap/scss/_card.scss */

.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 1, node_modules/bootstrap/scss/_breadcrumb.scss */

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0 !important;
}

/* line 13, node_modules/bootstrap/scss/_breadcrumb.scss */

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

/* line 16, node_modules/bootstrap/scss/_breadcrumb.scss */

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

/* line 30, node_modules/bootstrap/scss/_breadcrumb.scss */

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

/* line 34, node_modules/bootstrap/scss/_breadcrumb.scss */

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

/* line 38, node_modules/bootstrap/scss/_breadcrumb.scss */

.breadcrumb-item.active {
  color: #6c757d;
}

/* line 1, node_modules/bootstrap/scss/_pagination.scss */

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0 !important;
}

/* line 7, node_modules/bootstrap/scss/_pagination.scss */

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -2px;
  line-height: 1.25;
  color: #c80205;
  background-color: #ffffff;
  border: 2px solid #dee2e6;
}

/* line 17, node_modules/bootstrap/scss/_pagination.scss */

.page-link:hover {
  z-index: 2;
  color: #7c0103;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 25, node_modules/bootstrap/scss/_pagination.scss */

.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 32, node_modules/bootstrap/scss/_pagination.scss */

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 39, node_modules/bootstrap/scss/_pagination.scss */

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* line 45, node_modules/bootstrap/scss/_pagination.scss */

.page-item:last-child .page-link {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 50, node_modules/bootstrap/scss/_pagination.scss */

.page-item.active .page-link {
  z-index: 1;
  color: #ffffff;
  background-color: #c80205;
  border-color: #c80205;
}

/* line 57, node_modules/bootstrap/scss/_pagination.scss */

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #ffffff;
  border-color: #dee2e6;
}

/* line 4, node_modules/bootstrap/scss/mixins/_pagination.scss */

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 12, node_modules/bootstrap/scss/mixins/_pagination.scss */

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

/* line 17, node_modules/bootstrap/scss/mixins/_pagination.scss */

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

/* line 4, node_modules/bootstrap/scss/mixins/_pagination.scss */

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 12, node_modules/bootstrap/scss/mixins/_pagination.scss */

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

/* line 17, node_modules/bootstrap/scss/mixins/_pagination.scss */

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* line 6, node_modules/bootstrap/scss/_badge.scss */

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0 !important;
}

/* line 18, node_modules/bootstrap/scss/_badge.scss */

.badge:empty {
  display: none;
}

/* line 24, node_modules/bootstrap/scss/_badge.scss */

.btn .badge,
.comment-form input[type="submit"] .badge {
  position: relative;
  top: -1px;
}

/* line 33, node_modules/bootstrap/scss/_badge.scss */

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

/* line 44, node_modules/bootstrap/scss/_badge.scss */

.badge-primary {
  color: #ffffff;
  background-color: #c80205;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.badge-primary[href]:hover,
.badge-primary[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #960104;
}

/* line 44, node_modules/bootstrap/scss/_badge.scss */

.badge-secondary {
  color: #ffffff;
  background-color: #6c757d;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.badge-secondary[href]:hover,
.badge-secondary[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #545b62;
}

/* line 44, node_modules/bootstrap/scss/_badge.scss */

.badge-success {
  color: #ffffff;
  background-color: #28a745;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.badge-success[href]:hover,
.badge-success[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #1e7e34;
}

/* line 44, node_modules/bootstrap/scss/_badge.scss */

.badge-info {
  color: #ffffff;
  background-color: #17a2b8;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.badge-info[href]:hover,
.badge-info[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #117a8b;
}

/* line 44, node_modules/bootstrap/scss/_badge.scss */

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.badge-warning[href]:hover,
.badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

/* line 44, node_modules/bootstrap/scss/_badge.scss */

.badge-danger {
  color: #ffffff;
  background-color: #dc3545;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.badge-danger[href]:hover,
.badge-danger[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #bd2130;
}

/* line 44, node_modules/bootstrap/scss/_badge.scss */

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.badge-light[href]:hover,
.badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

/* line 44, node_modules/bootstrap/scss/_badge.scss */

.badge-dark {
  color: #ffffff;
  background-color: #343a40;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.badge-dark[href]:hover,
.badge-dark[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #1d2124;
}

/* line 1, node_modules/bootstrap/scss/_jumbotron.scss */

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  /* line 1, node_modules/bootstrap/scss/_jumbotron.scss */

  .jumbotron {
    padding: 4rem 2rem;
  }
}

/* line 12, node_modules/bootstrap/scss/_jumbotron.scss */

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

/* line 5, node_modules/bootstrap/scss/_alert.scss */

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 2px solid transparent;
  border-radius: 0 !important;
}

/* line 14, node_modules/bootstrap/scss/_alert.scss */

.alert-heading {
  color: inherit;
}

/* line 20, node_modules/bootstrap/scss/_alert.scss */

.alert-link {
  font-weight: 700;
}

/* line 29, node_modules/bootstrap/scss/_alert.scss */

.alert-dismissible {
  padding-right: 4rem;
}

/* line 33, node_modules/bootstrap/scss/_alert.scss */

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

/* line 48, node_modules/bootstrap/scss/_alert.scss */

.alert-primary {
  color: #680103;
  background-color: #f4cccd;
  border-color: #f0b8b9;
}

/* line 6, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-primary hr {
  border-top-color: #eca3a4;
}

/* line 10, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-primary .alert-link {
  color: #350102;
}

/* line 48, node_modules/bootstrap/scss/_alert.scss */

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

/* line 6, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

/* line 10, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-secondary .alert-link {
  color: #202326;
}

/* line 48, node_modules/bootstrap/scss/_alert.scss */

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

/* line 6, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-success hr {
  border-top-color: #b1dfbb;
}

/* line 10, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-success .alert-link {
  color: #0b2e13;
}

/* line 48, node_modules/bootstrap/scss/_alert.scss */

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* line 6, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-info hr {
  border-top-color: #abdde5;
}

/* line 10, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-info .alert-link {
  color: #062c33;
}

/* line 48, node_modules/bootstrap/scss/_alert.scss */

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

/* line 6, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-warning hr {
  border-top-color: #ffe8a1;
}

/* line 10, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-warning .alert-link {
  color: #533f03;
}

/* line 48, node_modules/bootstrap/scss/_alert.scss */

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* line 6, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-danger hr {
  border-top-color: #f1b0b7;
}

/* line 10, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-danger .alert-link {
  color: #491217;
}

/* line 48, node_modules/bootstrap/scss/_alert.scss */

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

/* line 6, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-light hr {
  border-top-color: #ececf6;
}

/* line 10, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-light .alert-link {
  color: #686868;
}

/* line 48, node_modules/bootstrap/scss/_alert.scss */

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

/* line 6, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-dark hr {
  border-top-color: #b9bbbe;
}

/* line 10, node_modules/bootstrap/scss/mixins/_alert.scss */

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

/* line 6, node_modules/bootstrap/scss/_progress.scss */

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0 !important;
}

/* line 16, node_modules/bootstrap/scss/_progress.scss */

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background-color: #c80205;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 16, node_modules/bootstrap/scss/_progress.scss */

  .progress-bar {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 27, node_modules/bootstrap/scss/_progress.scss */

.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

/* line 32, node_modules/bootstrap/scss/_progress.scss */

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
       -o-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

/* line 1, node_modules/bootstrap/scss/_media.scss */

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* line 6, node_modules/bootstrap/scss/_media.scss */

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* line 5, node_modules/bootstrap/scss/_list-group.scss */

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

/* line 20, node_modules/bootstrap/scss/_list-group.scss */

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-action:hover,
.list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 32, node_modules/bootstrap/scss/_list-group.scss */

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

/* line 43, node_modules/bootstrap/scss/_list-group.scss */

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -2px;
  background-color: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.125);
}

/* line 52, node_modules/bootstrap/scss/_list-group.scss */

.list-group-item:first-child {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/* line 56, node_modules/bootstrap/scss/_list-group.scss */

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item:hover,
.list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}

/* line 66, node_modules/bootstrap/scss/_list-group.scss */

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  background-color: #ffffff;
}

/* line 73, node_modules/bootstrap/scss/_list-group.scss */

.list-group-item.active {
  z-index: 2;
  color: #ffffff;
  background-color: #c80205;
  border-color: #c80205;
}

/* line 88, node_modules/bootstrap/scss/_list-group.scss */

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

/* line 95, node_modules/bootstrap/scss/_list-group.scss */

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

/* line 101, node_modules/bootstrap/scss/_list-group.scss */

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

/* line 4, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-primary {
  color: #680103;
  background-color: #f0b8b9;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #680103;
  background-color: #eca3a4;
}

/* line 14, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-primary.list-group-item-action.active {
  color: #ffffff;
  background-color: #680103;
  border-color: #680103;
}

/* line 4, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

/* line 14, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-secondary.list-group-item-action.active {
  color: #ffffff;
  background-color: #383d41;
  border-color: #383d41;
}

/* line 4, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

/* line 14, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-success.list-group-item-action.active {
  color: #ffffff;
  background-color: #155724;
  border-color: #155724;
}

/* line 4, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

/* line 14, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-info.list-group-item-action.active {
  color: #ffffff;
  background-color: #0c5460;
  border-color: #0c5460;
}

/* line 4, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

/* line 14, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-warning.list-group-item-action.active {
  color: #ffffff;
  background-color: #856404;
  border-color: #856404;
}

/* line 4, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

/* line 14, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-danger.list-group-item-action.active {
  color: #ffffff;
  background-color: #721c24;
  border-color: #721c24;
}

/* line 4, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

/* line 14, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-light.list-group-item-action.active {
  color: #ffffff;
  background-color: #818182;
  border-color: #818182;
}

/* line 4, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

/* line 14, node_modules/bootstrap/scss/mixins/_list-group.scss */

.list-group-item-dark.list-group-item-action.active {
  color: #ffffff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

/* line 1, node_modules/bootstrap/scss/_close.scss */

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: .5;
}

/* line 10, node_modules/bootstrap/scss/_close.scss */

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  color: #000000;
  text-decoration: none;
  opacity: .75;
}

/* line 29, node_modules/bootstrap/scss/_close.scss */

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 7, node_modules/bootstrap/scss/_modal.scss */

.modal-open {
  overflow: hidden;
}

/* line 11, node_modules/bootstrap/scss/_modal.scss */

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 18, node_modules/bootstrap/scss/_modal.scss */

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

/* line 36, node_modules/bootstrap/scss/_modal.scss */

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

/* line 44, node_modules/bootstrap/scss/_modal.scss */

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 44, node_modules/bootstrap/scss/_modal.scss */

  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 48, node_modules/bootstrap/scss/_modal.scss */

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* line 53, node_modules/bootstrap/scss/_modal.scss */

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

/* line 59, node_modules/bootstrap/scss/_modal.scss */

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}

/* line 67, node_modules/bootstrap/scss/_modal.scss */

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

/* line 84, node_modules/bootstrap/scss/_modal.scss */

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}

/* line 94, node_modules/bootstrap/scss/_modal.scss */

.modal-backdrop.fade {
  opacity: 0;
}

/* line 95, node_modules/bootstrap/scss/_modal.scss */

.modal-backdrop.show {
  opacity: 0.5;
}

/* line 100, node_modules/bootstrap/scss/_modal.scss */

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 2px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

/* line 108, node_modules/bootstrap/scss/_modal.scss */

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

/* line 116, node_modules/bootstrap/scss/_modal.scss */

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 123, node_modules/bootstrap/scss/_modal.scss */

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

/* line 132, node_modules/bootstrap/scss/_modal.scss */

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 2px solid #e9ecef;
}

/* line 140, node_modules/bootstrap/scss/_modal.scss */

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

/* line 141, node_modules/bootstrap/scss/_modal.scss */

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

/* line 145, node_modules/bootstrap/scss/_modal.scss */

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  /* line 156, node_modules/bootstrap/scss/_modal.scss */

  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  /* line 161, node_modules/bootstrap/scss/_modal.scss */

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  /* line 164, node_modules/bootstrap/scss/_modal.scss */

  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  /* line 174, node_modules/bootstrap/scss/_modal.scss */

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 179, node_modules/bootstrap/scss/_modal.scss */

  .modal-lg {
    max-width: 800px;
  }
}

/* line 2, node_modules/bootstrap/scss/_tooltip.scss */

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Oxygen", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

/* line 15, node_modules/bootstrap/scss/_tooltip.scss */

.tooltip.show {
  opacity: 0.9;
}

/* line 17, node_modules/bootstrap/scss/_tooltip.scss */

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

/* line 23, node_modules/bootstrap/scss/_tooltip.scss */

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 32, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

/* line 35, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

/* line 38, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000000;
}

/* line 46, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

/* line 49, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 54, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000000;
}

/* line 62, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

/* line 65, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

/* line 68, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000000;
}

/* line 76, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

/* line 79, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 84, node_modules/bootstrap/scss/_tooltip.scss */

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000000;
}

/* line 108, node_modules/bootstrap/scss/_tooltip.scss */

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 0 !important;
}

/* line 1, node_modules/bootstrap/scss/_popover.scss */

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Oxygen", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

/* line 20, node_modules/bootstrap/scss/_popover.scss */

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

/* line 27, node_modules/bootstrap/scss/_popover.scss */

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 38, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

/* line 41, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-top .arrow,
.bs-popover-auto[x-placement^="top"] .arrow {
  bottom: calc((0.5rem + 2px) * -1);
}

/* line 45, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-top .arrow::before,
.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}

/* line 50, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-top .arrow::before,
.bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

/* line 55, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: 2px;
  border-top-color: #ffffff;
}

/* line 61, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

/* line 64, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-right .arrow,
.bs-popover-auto[x-placement^="right"] .arrow {
  left: calc((0.5rem + 2px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 71, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-right .arrow::before,
.bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}

/* line 76, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-right .arrow::before,
.bs-popover-auto[x-placement^="right"] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 81, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: 2px;
  border-right-color: #ffffff;
}

/* line 87, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

/* line 90, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-bottom .arrow,
.bs-popover-auto[x-placement^="bottom"] .arrow {
  top: calc((0.5rem + 2px) * -1);
}

/* line 94, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-bottom .arrow::before,
.bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}

/* line 99, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-bottom .arrow::before,
.bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 104, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: 2px;
  border-bottom-color: #ffffff;
}

/* line 110, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 2px solid #f7f7f7;
}

/* line 122, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

/* line 125, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-left .arrow,
.bs-popover-auto[x-placement^="left"] .arrow {
  right: calc((0.5rem + 2px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 132, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-left .arrow::before,
.bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}

/* line 137, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-left .arrow::before,
.bs-popover-auto[x-placement^="left"] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 142, node_modules/bootstrap/scss/_popover.scss */

.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: 2px;
  border-left-color: #ffffff;
}

/* line 165, node_modules/bootstrap/scss/_popover.scss */

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 2px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 2px);
  border-top-right-radius: calc(0.3rem - 2px);
}

/* line 175, node_modules/bootstrap/scss/_popover.scss */

.popover-header:empty {
  display: none;
}

/* line 180, node_modules/bootstrap/scss/_popover.scss */

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

/* line 11, node_modules/bootstrap/scss/_carousel.scss */

.carousel {
  position: relative;
}

/* line 15, node_modules/bootstrap/scss/_carousel.scss */

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 21, node_modules/bootstrap/scss/_carousel.scss */

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

/* line 30, node_modules/bootstrap/scss/_carousel.scss */

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: -o-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease, -o-transform 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 30, node_modules/bootstrap/scss/_carousel.scss */

  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

/* line 37, node_modules/bootstrap/scss/_carousel.scss */

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

/* line 43, node_modules/bootstrap/scss/_carousel.scss */

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  /* line 43, node_modules/bootstrap/scss/_carousel.scss */

  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/* line 52, node_modules/bootstrap/scss/_carousel.scss */

.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  /* line 52, node_modules/bootstrap/scss/_carousel.scss */

  .carousel-item-next,
  .active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

/* line 61, node_modules/bootstrap/scss/_carousel.scss */

.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  /* line 61, node_modules/bootstrap/scss/_carousel.scss */

  .carousel-item-prev,
  .active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

/* line 76, node_modules/bootstrap/scss/_carousel.scss */

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-duration: .6s;
       -o-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

/* line 82, node_modules/bootstrap/scss/_carousel.scss */

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

/* line 88, node_modules/bootstrap/scss/_carousel.scss */

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

/* line 93, node_modules/bootstrap/scss/_carousel.scss */

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  /* line 93, node_modules/bootstrap/scss/_carousel.scss */

  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/* line 111, node_modules/bootstrap/scss/_carousel.scss */

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #ffffff;
  text-align: center;
  opacity: 0.5;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

/* line 135, node_modules/bootstrap/scss/_carousel.scss */

.carousel-control-prev {
  left: 0;
}

/* line 141, node_modules/bootstrap/scss/_carousel.scss */

.carousel-control-next {
  right: 0;
}

/* line 149, node_modules/bootstrap/scss/_carousel.scss */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

/* line 157, node_modules/bootstrap/scss/_carousel.scss */

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

/* line 160, node_modules/bootstrap/scss/_carousel.scss */

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* line 170, node_modules/bootstrap/scss/_carousel.scss */

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

/* line 184, node_modules/bootstrap/scss/_carousel.scss */

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 196, node_modules/bootstrap/scss/_carousel.scss */

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

/* line 205, node_modules/bootstrap/scss/_carousel.scss */

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

/* line 216, node_modules/bootstrap/scss/_carousel.scss */

.carousel-indicators .active {
  background-color: #ffffff;
}

/* line 226, node_modules/bootstrap/scss/_carousel.scss */

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

/* line 3, node_modules/bootstrap/scss/utilities/_align.scss */

.align-baseline {
  vertical-align: baseline !important;
}

/* line 4, node_modules/bootstrap/scss/utilities/_align.scss */

.align-top {
  vertical-align: top !important;
}

/* line 5, node_modules/bootstrap/scss/utilities/_align.scss */

.align-middle {
  vertical-align: middle !important;
}

/* line 6, node_modules/bootstrap/scss/utilities/_align.scss */

.align-bottom {
  vertical-align: bottom !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_align.scss */

.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 8, node_modules/bootstrap/scss/utilities/_align.scss */

.align-text-top {
  vertical-align: text-top !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_background-variant.scss */

.bg-primary {
  background-color: #c80205 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #960104 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_background-variant.scss */

.bg-secondary {
  background-color: #6c757d !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_background-variant.scss */

.bg-success {
  background-color: #28a745 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_background-variant.scss */

.bg-info {
  background-color: #17a2b8 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_background-variant.scss */

.bg-warning {
  background-color: #ffc107 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_background-variant.scss */

.bg-danger {
  background-color: #dc3545 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_background-variant.scss */

.bg-light {
  background-color: #f8f9fa !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_background-variant.scss */

.bg-dark {
  background-color: #343a40 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_background.scss */

.bg-white {
  background-color: #ffffff !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_background.scss */

.bg-transparent {
  background-color: transparent !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_borders.scss */

.border {
  border: 2px solid #dee2e6 !important;
}

/* line 8, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-top {
  border-top: 2px solid #dee2e6 !important;
}

/* line 9, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-right {
  border-right: 2px solid #dee2e6 !important;
}

/* line 10, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-bottom {
  border-bottom: 2px solid #dee2e6 !important;
}

/* line 11, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-left {
  border-left: 2px solid #dee2e6 !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-0 {
  border: 0 !important;
}

/* line 14, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-top-0 {
  border-top: 0 !important;
}

/* line 15, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-right-0 {
  border-right: 0 !important;
}

/* line 16, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-left-0 {
  border-left: 0 !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-primary {
  border-color: #c80205 !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-secondary {
  border-color: #6c757d !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-success {
  border-color: #28a745 !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-info {
  border-color: #17a2b8 !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-warning {
  border-color: #ffc107 !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-danger {
  border-color: #dc3545 !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-light {
  border-color: #f8f9fa !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-dark {
  border-color: #343a40 !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_borders.scss */

.border-white {
  border-color: #ffffff !important;
}

/* line 33, node_modules/bootstrap/scss/utilities/_borders.scss */

.rounded {
  border-radius: 0 !important !important;
}

/* line 36, node_modules/bootstrap/scss/utilities/_borders.scss */

.rounded-top {
  border-top-left-radius: 0 !important !important;
  border-top-right-radius: 0 !important !important;
}

/* line 40, node_modules/bootstrap/scss/utilities/_borders.scss */

.rounded-right {
  border-top-right-radius: 0 !important !important;
  border-bottom-right-radius: 0 !important !important;
}

/* line 44, node_modules/bootstrap/scss/utilities/_borders.scss */

.rounded-bottom {
  border-bottom-right-radius: 0 !important !important;
  border-bottom-left-radius: 0 !important !important;
}

/* line 48, node_modules/bootstrap/scss/utilities/_borders.scss */

.rounded-left {
  border-top-left-radius: 0 !important !important;
  border-bottom-left-radius: 0 !important !important;
}

/* line 53, node_modules/bootstrap/scss/utilities/_borders.scss */

.rounded-circle {
  border-radius: 50% !important;
}

/* line 57, node_modules/bootstrap/scss/utilities/_borders.scss */

.rounded-0 {
  border-radius: 0 !important;
}

/* line 2, node_modules/bootstrap/scss/mixins/_clearfix.scss */

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

.d-none {
  display: none !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

.d-inline {
  display: inline !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

.d-inline-block {
  display: inline-block !important;
}

/* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

.d-block {
  display: block !important;
}

/* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

.d-table {
  display: table !important;
}

/* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

.d-table-row {
  display: table-row !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

.d-table-cell {
  display: table-cell !important;
}

/* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-none {
    display: none !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-inline {
    display: inline !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-inline-block {
    display: inline-block !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-block {
    display: block !important;
  }

  /* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-table {
    display: table !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-table-row {
    display: table-row !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-table-cell {
    display: table-cell !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-none {
    display: none !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-inline {
    display: inline !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-inline-block {
    display: inline-block !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-block {
    display: block !important;
  }

  /* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-table {
    display: table !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-table-row {
    display: table-row !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-table-cell {
    display: table-cell !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-none {
    display: none !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-inline {
    display: inline !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-inline-block {
    display: inline-block !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-block {
    display: block !important;
  }

  /* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-table {
    display: table !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-table-row {
    display: table-row !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-table-cell {
    display: table-cell !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-none {
    display: none !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-inline {
    display: inline !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-inline-block {
    display: inline-block !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-block {
    display: block !important;
  }

  /* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-table {
    display: table !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-table-row {
    display: table-row !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-table-cell {
    display: table-cell !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  /* line 29, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-none {
    display: none !important;
  }

  /* line 30, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-inline {
    display: inline !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-inline-block {
    display: inline-block !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-block {
    display: block !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-table {
    display: table !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-table-row {
    display: table-row !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-table-cell {
    display: table-cell !important;
  }

  /* line 36, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

/* line 3, node_modules/bootstrap/scss/utilities/_embed.scss */

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

/* line 10, node_modules/bootstrap/scss/utilities/_embed.scss */

.embed-responsive::before {
  display: block;
  content: "";
}

/* line 15, node_modules/bootstrap/scss/utilities/_embed.scss */

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 31, node_modules/bootstrap/scss/utilities/_embed.scss */

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

/* line 37, node_modules/bootstrap/scss/utilities/_embed.scss */

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

/* line 43, node_modules/bootstrap/scss/utilities/_embed.scss */

.embed-responsive-4by3::before {
  padding-top: 75%;
}

/* line 49, node_modules/bootstrap/scss/utilities/_embed.scss */

.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

/* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

/* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

/* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

/* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

/* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

/* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

/* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

/* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

/* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

/* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

/* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

/* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

/* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

/* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

/* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

/* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

/* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

/* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

/* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

/* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

/* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

/* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

/* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

/* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

/* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

/* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

/* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  /* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  /* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  /* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  /* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  /* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  /* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  /* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  /* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  /* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  /* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  /* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  /* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  /* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  /* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  /* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  /* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  /* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  /* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  /* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  /* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  /* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  /* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  /* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  /* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  /* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  /* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  /* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  /* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  /* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  /* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  /* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  /* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  /* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  /* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  /* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  /* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

/* line 5, node_modules/bootstrap/scss/utilities/_float.scss */

.float-left {
  float: left !important;
}

/* line 6, node_modules/bootstrap/scss/utilities/_float.scss */

.float-right {
  float: right !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_float.scss */

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  /* line 5, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-sm-left {
    float: left !important;
  }

  /* line 6, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-sm-right {
    float: right !important;
  }

  /* line 7, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  /* line 5, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-md-left {
    float: left !important;
  }

  /* line 6, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-md-right {
    float: right !important;
  }

  /* line 7, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  /* line 5, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-lg-left {
    float: left !important;
  }

  /* line 6, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-lg-right {
    float: right !important;
  }

  /* line 7, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 5, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-xl-left {
    float: left !important;
  }

  /* line 6, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-xl-right {
    float: right !important;
  }

  /* line 7, node_modules/bootstrap/scss/utilities/_float.scss */

  .float-xl-none {
    float: none !important;
  }
}

/* line 10, node_modules/bootstrap/scss/utilities/_position.scss */

.position-static {
  position: static !important;
}

/* line 10, node_modules/bootstrap/scss/utilities/_position.scss */

.position-relative {
  position: relative !important;
}

/* line 10, node_modules/bootstrap/scss/utilities/_position.scss */

.position-absolute {
  position: absolute !important;
}

/* line 10, node_modules/bootstrap/scss/utilities/_position.scss */

.position-fixed {
  position: fixed !important;
}

/* line 10, node_modules/bootstrap/scss/utilities/_position.scss */

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

/* line 15, node_modules/bootstrap/scss/utilities/_position.scss */

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 23, node_modules/bootstrap/scss/utilities/_position.scss */

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  /* line 31, node_modules/bootstrap/scss/utilities/_position.scss */

  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* line 5, node_modules/bootstrap/scss/utilities/_screenreaders.scss */

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* line 24, node_modules/bootstrap/scss/mixins/_screen-reader.scss */

.sr-only-focusable:active,
.screen-reader-text:active,
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* line 3, node_modules/bootstrap/scss/utilities/_shadows.scss */

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

/* line 4, node_modules/bootstrap/scss/utilities/_shadows.scss */

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* line 5, node_modules/bootstrap/scss/utilities/_shadows.scss */

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* line 6, node_modules/bootstrap/scss/utilities/_shadows.scss */

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

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.w-25 {
  width: 25% !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.w-50 {
  width: 50% !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.w-75 {
  width: 75% !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.w-100 {
  width: 100% !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.w-auto {
  width: auto !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.h-25 {
  height: 25% !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.h-50 {
  height: 50% !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.h-75 {
  height: 75% !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.h-100 {
  height: 100% !important;
}

/* line 7, node_modules/bootstrap/scss/utilities/_sizing.scss */

.h-auto {
  height: auto !important;
}

/* line 11, node_modules/bootstrap/scss/utilities/_sizing.scss */

.mw-100 {
  max-width: 100% !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_sizing.scss */

.mh-100 {
  max-height: 100% !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.m-0 {
  margin: 0 !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.m-1 {
  margin: 0.25rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.m-2 {
  margin: 0.5rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.m-3 {
  margin: 1rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.m-4 {
  margin: 1.5rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.m-5 {
  margin: 3rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.p-0 {
  padding: 0 !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.p-1 {
  padding: 0.25rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.p-2 {
  padding: 0.5rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.p-3 {
  padding: 1rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.p-4 {
  padding: 1.5rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

.p-5 {
  padding: 3rem !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

/* line 33, node_modules/bootstrap/scss/utilities/_spacing.scss */

.m-auto {
  margin: auto !important;
}

/* line 34, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

/* line 38, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

/* line 42, node_modules/bootstrap/scss/utilities/_spacing.scss */

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

/* line 46, node_modules/bootstrap/scss/utilities/_spacing.scss */

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-sm-0 {
    margin: 0 !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-sm-3 {
    margin: 1rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-sm-5 {
    margin: 3rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-sm-0 {
    padding: 0 !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-sm-3 {
    padding: 1rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-sm-5 {
    padding: 3rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-sm-auto {
    margin: auto !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-md-0 {
    margin: 0 !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-md-1 {
    margin: 0.25rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-md-2 {
    margin: 0.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-md-3 {
    margin: 1rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-md-4 {
    margin: 1.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-md-5 {
    margin: 3rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-md-0 {
    padding: 0 !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-md-1 {
    padding: 0.25rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-md-2 {
    padding: 0.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-md-3 {
    padding: 1rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-md-4 {
    padding: 1.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-md-5 {
    padding: 3rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-md-auto {
    margin: auto !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-lg-0 {
    margin: 0 !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-lg-3 {
    margin: 1rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-lg-5 {
    margin: 3rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-lg-0 {
    padding: 0 !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-lg-3 {
    padding: 1rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-lg-5 {
    padding: 3rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-lg-auto {
    margin: auto !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-xl-0 {
    margin: 0 !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-xl-3 {
    margin: 1rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-xl-5 {
    margin: 3rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-xl-0 {
    padding: 0 !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-xl-3 {
    padding: 1rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .p-xl-5 {
    padding: 3rem !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .m-xl-auto {
    margin: auto !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_spacing.scss */

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

/* line 7, node_modules/bootstrap/scss/utilities/_text.scss */

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* line 11, node_modules/bootstrap/scss/utilities/_text.scss */

.text-justify {
  text-align: justify !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_text.scss */

.text-nowrap {
  white-space: nowrap !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_text.scss */

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 21, node_modules/bootstrap/scss/utilities/_text.scss */

.text-left {
  text-align: left !important;
}

/* line 22, node_modules/bootstrap/scss/utilities/_text.scss */

.text-right {
  text-align: right !important;
}

/* line 23, node_modules/bootstrap/scss/utilities/_text.scss */

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  /* line 21, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-sm-left {
    text-align: left !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-sm-right {
    text-align: right !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* line 21, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-md-left {
    text-align: left !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-md-right {
    text-align: right !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  /* line 21, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-lg-left {
    text-align: left !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-lg-right {
    text-align: right !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 21, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-xl-left {
    text-align: left !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-xl-right {
    text-align: right !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_text.scss */

  .text-xl-center {
    text-align: center !important;
  }
}

/* line 29, node_modules/bootstrap/scss/utilities/_text.scss */

.text-lowercase {
  text-transform: lowercase !important;
}

/* line 30, node_modules/bootstrap/scss/utilities/_text.scss */

.text-uppercase {
  text-transform: uppercase !important;
}

/* line 31, node_modules/bootstrap/scss/utilities/_text.scss */

.text-capitalize {
  text-transform: capitalize !important;
}

/* line 35, node_modules/bootstrap/scss/utilities/_text.scss */

.font-weight-light {
  font-weight: 300 !important;
}

/* line 36, node_modules/bootstrap/scss/utilities/_text.scss */

.font-weight-normal {
  font-weight: 400 !important;
}

/* line 37, node_modules/bootstrap/scss/utilities/_text.scss */

.font-weight-bold {
  font-weight: 700 !important;
}

/* line 38, node_modules/bootstrap/scss/utilities/_text.scss */

.font-italic {
  font-style: italic !important;
}

/* line 42, node_modules/bootstrap/scss/utilities/_text.scss */

.text-white {
  color: #ffffff !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_text-emphasis.scss */

.text-primary {
  color: #c80205 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.text-primary:hover,
a.text-primary:focus {
  color: #960104 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_text-emphasis.scss */

.text-secondary {
  color: #6c757d !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.text-secondary:hover,
a.text-secondary:focus {
  color: #545b62 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_text-emphasis.scss */

.text-success {
  color: #28a745 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.text-success:hover,
a.text-success:focus {
  color: #1e7e34 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_text-emphasis.scss */

.text-info {
  color: #17a2b8 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.text-info:hover,
a.text-info:focus {
  color: #117a8b !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_text-emphasis.scss */

.text-warning {
  color: #ffc107 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.text-warning:hover,
a.text-warning:focus {
  color: #d39e00 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_text-emphasis.scss */

.text-danger {
  color: #dc3545 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.text-danger:hover,
a.text-danger:focus {
  color: #bd2130 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_text-emphasis.scss */

.text-light {
  color: #f8f9fa !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.text-light:hover,
a.text-light:focus {
  color: #dae0e5 !important;
}

/* line 6, node_modules/bootstrap/scss/mixins/_text-emphasis.scss */

.text-dark {
  color: #343a40 !important;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a.text-dark:hover,
a.text-dark:focus {
  color: #1d2124 !important;
}

/* line 48, node_modules/bootstrap/scss/utilities/_text.scss */

.text-body {
  color: #212529 !important;
}

/* line 49, node_modules/bootstrap/scss/utilities/_text.scss */

.text-muted {
  color: #6c757d !important;
}

/* line 51, node_modules/bootstrap/scss/utilities/_text.scss */

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 52, node_modules/bootstrap/scss/utilities/_text.scss */

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 56, node_modules/bootstrap/scss/utilities/_text.scss */

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 5, node_modules/bootstrap/scss/utilities/_visibility.scss */

.visible {
  visibility: visible !important;
}

/* line 9, node_modules/bootstrap/scss/utilities/_visibility.scss */

.invisible {
  visibility: hidden !important;
}

@media print {
  /* line 13, node_modules/bootstrap/scss/_print.scss */

  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  /* line 24, node_modules/bootstrap/scss/_print.scss */

  a:not(.btn) {
    text-decoration: underline;
  }

  /* line 34, node_modules/bootstrap/scss/_print.scss */

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /* line 49, node_modules/bootstrap/scss/_print.scss */

  pre {
    white-space: pre-wrap !important;
  }

  /* line 52, node_modules/bootstrap/scss/_print.scss */

  pre,
  blockquote {
    border: 2px solid #adb5bd;
    page-break-inside: avoid;
  }

  /* line 63, node_modules/bootstrap/scss/_print.scss */

  thead {
    display: table-header-group;
  }

  /* line 67, node_modules/bootstrap/scss/_print.scss */

  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 72, node_modules/bootstrap/scss/_print.scss */

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 79, node_modules/bootstrap/scss/_print.scss */

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  /* line 92, node_modules/bootstrap/scss/_print.scss */

  body {
    min-width: 992px !important;
  }

  /* line 95, node_modules/bootstrap/scss/_print.scss */

  .container,
  .two-column-carousel .tns-outer {
    min-width: 992px !important;
  }

  /* line 100, node_modules/bootstrap/scss/_print.scss */

  .navbar {
    display: none;
  }

  /* line 103, node_modules/bootstrap/scss/_print.scss */

  .badge {
    border: 2px solid #000000;
  }

  /* line 107, node_modules/bootstrap/scss/_print.scss */

  .table {
    border-collapse: collapse !important;
  }

  /* line 110, node_modules/bootstrap/scss/_print.scss */

  .table td,
  .table th {
    background-color: #ffffff !important;
  }

  /* line 117, node_modules/bootstrap/scss/_print.scss */

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  /* line 123, node_modules/bootstrap/scss/_print.scss */

  .table-dark {
    color: inherit;
  }

  /* line 126, node_modules/bootstrap/scss/_print.scss */

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  /* line 134, node_modules/bootstrap/scss/_print.scss */

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */

/*Plugins*/

/* line 3, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-outer {
  padding: 0 !important;
}

/* line 5, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-outer [hidden] {
  display: none !important;
}

/* line 6, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}

/* line 8, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-slider {
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

/* line 12, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 20, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

/* line 22, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

/* line 29, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both;
}

/* line 34, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
  margin-right: -100%;
}

/* line 40, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-no-calc {
  position: relative;
  left: 0;
}

/* line 44, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

/* line 49, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -webkit-transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, -webkit-transform 0s;
  -o-transition: opacity 0s, -o-transform 0s;
  transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s, -webkit-transform 0s, -o-transform 0s;
}

/* line 56, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-gallery > .tns-slide-active {
  position: relative;
  left: unset !important;
}

/* line 60, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

/* line 66, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

/* line 71, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-lazy-img.loaded {
  opacity: 1;
}

/* line 73, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-ah {
  -webkit-transition: height 0s;
  -o-transition: height 0s;
  transition: height 0s;
}

/* line 78, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-ovh {
  overflow: hidden;
}

/* line 79, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

/* line 80, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

/* line 82, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

/* line 87, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

/* line 101, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

/* line 108, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-t-ct {
  width: 2333.33333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

/* line 115, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-t-ct:after {
  content: '';
  display: table;
  clear: both;
}

/* line 120, resources/assets/styles/plugins/tiny-slider/tiny-slider.scss */

.tns-t-ct > div {
  width: 1.42857%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

/** Import theme styles */

/* line 1, resources/assets/styles/common/_global.scss */

html,
body {
  height: 100%;
}

/* line 5, resources/assets/styles/common/_global.scss */

body,
p {
  letter-spacing: 0.5px;
}

/* line 9, resources/assets/styles/common/_global.scss */

p:empty {
  display: none;
}

/* line 13, resources/assets/styles/common/_global.scss */

.empty-section {
  margin: 0;
}

/* line 24, resources/assets/styles/common/_global.scss */

body ::-moz-selection,
body ::selection {
  background-color: #ece1e8;
}

/* line 29, resources/assets/styles/common/_global.scss */

body.loading {
  position: relative;
  /* "Disable" submit buttons */
}

/* line 34, resources/assets/styles/common/_global.scss */

body.loading [type="submit"],
body.loading [type="reset"],
body.loading [type="button"],
body.loading .btn,
body.loading .comment-form input[type="submit"],
.comment-form body.loading input[type="submit"] {
  opacity: .5;
  cursor: default;
  pointer-events: none;
}

/* line 43, resources/assets/styles/common/_global.scss */

body.loading:before {
  background-image: url(/app/themes/rotpunkt/dist/images/loading.gif);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-position: center;
  content: ' ';
  display: block;
  pointer-events: none;
  z-index: 10000;
  background-repeat: no-repeat;
  background-size: 5em;
  background-color: #ffffff;
  opacity: 0.7;
  animation: animatedBackground 40s linear infinite;
  -webkit-animation: animatedBackground 30s linear infinite;
  -moz-animation: animatedBackground 40s linear infinite;
  -o-animation: animatedBackground 40s linear infinite;
  -ms-animation: animatedBackground 40s linear infinite;
}

/* line 70, resources/assets/styles/common/_global.scss */

body .alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

/* line 78, resources/assets/styles/common/_global.scss */

body .figure,
body .wp-caption,
body .wp-caption {
  display: block;
  margin: 15px 0;
  width: auto !important;
}

/* line 84, resources/assets/styles/common/_global.scss */

body .figure-caption,
body .wp-caption-text,
body .wp-caption-text {
  font-size: inherit;
  color: inherit;
  clear: none;
  display: block;
  font-style: italic;
}

/* line 95, resources/assets/styles/common/_global.scss */

.browser-internet-explorer main .row {
  min-width: 100%;
}

/* line 99, resources/assets/styles/common/_global.scss */

.browser-internet-explorer .kc-animated {
  opacity: 1 !important;
}

/* line 103, resources/assets/styles/common/_global.scss */

.browser-internet-explorer .img-fluid,
.browser-internet-explorer .wp-caption img,
.wp-caption .browser-internet-explorer img,
.browser-internet-explorer .wp-caption img {
  width: 100%;
  height: auto;
}

/* line 108, resources/assets/styles/common/_global.scss */

.browser-internet-explorer .not-ie {
  display: none;
}

/* line 113, resources/assets/styles/common/_global.scss */

i.str {
  max-width: 256px;
  max-height: 256px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQ3Mi4yMDgsMjAxLjcxMmM5LjI3MS05LjAzNywxMi41NDQtMjIuMyw4LjU0NC0zNC42MTNjLTQuMDAxLTEyLjMxMy0xNC40NDUtMjEuMTE4LTI3LjI1Ny0yMi45NzlsLTExMi4wMy0xNi4yNzkgICAgYy0yLjE5OS0wLjMxOS00LjEtMS43LTUuMDg0LTMuNjk0TDI4Ni4yOCwyMi42MzJjLTUuNzI5LTExLjYxLTE3LjMzMS0xOC44MjItMzAuMjc4LTE4LjgyMmMtMTIuOTQ3LDAtMjQuNTQ5LDcuMjEyLTMwLjI3OCwxOC44MjIgICAgbC01MC4xMDEsMTAxLjUxNmMtMC45ODUsMS45OTMtMi44ODUsMy4zNzQtNS4wODUsMy42OTRMNTguNTEsMTQ0LjEyYy0xMi44MTIsMS44NjEtMjMuMjU1LDEwLjY2Ni0yNy4yNTcsMjIuOTc5ICAgIGMtNC4wMDIsMTIuMzEzLTAuNzI4LDI1LjU3Niw4LjU0NCwzNC42MTNsODEuMDY1LDc5LjAxOWMxLjU5MSwxLjU1MiwyLjMxOCwzLjc4NywxLjk0Miw1Ljk3OGwtMTkuMTM3LDExMS41NzYgICAgYy0yLjE4OCwxMi43NjEsMi45NTgsMjUuNDE0LDEzLjQzMiwzMy4wMjRjMTAuNDc0LDcuNjEyLDI0LjEwMiw4LjU5NSwzNS41NiwyLjU3MmwxMDAuMjAxLTUyLjY3OSAgICBjMS45NjgtMS4wMzUsNC4zMTctMS4wMzUsNi4yODYsMGwxMDAuMjAyLDUyLjY3OWM0Ljk4NCwyLjYyLDEwLjM3NywzLjkxNSwxNS43NDQsMy45MTRjNi45NywwLDEzLjg5Ni0yLjE4NCwxOS44MTMtNi40ODcgICAgYzEwLjQ3NC03LjYxMSwxNS42MjEtMjAuMjY1LDEzLjQzMi0zMy4wMjRsLTE5LjEzNy0xMTEuNTc2Yy0wLjM3NS0yLjE5MSwwLjM1MS00LjQyNiwxLjk0Mi01Ljk3OEw0NzIuMjA4LDIwMS43MTJ6ICAgICBNMzYyLjU3OSwyOTEuMjc2bDE5LjEzNywxMTEuNTc4YzAuNjQsMy43MzQtMS42NjUsNS44NjMtMi42ODYsNi42MDRjLTEuMDIyLDAuNzQtMy43NiwyLjI3Ny03LjExMiwwLjUxM2wtMTAwLjIwMi01Mi42NzkgICAgYy00LjkxOS0yLjU4NS0xMC4zMTUtMy44NzktMTUuNzEyLTMuODc5Yy01LjM5NywwLTEwLjc5NCwxLjI5NC0xNS43MTIsMy44NzhsLTEwMC4yMDEsNTIuNjc4ICAgIGMtMy4zNTQsMS43NjMtNi4wOTEsMC4yMjgtNy4xMTItMC41MTNjLTEuMDIxLTAuNzQxLTMuMzI3LTIuODctMi42ODYtNi42MDRsMTkuMTM3LTExMS41NzYgICAgYzEuODc5LTEwLjk1NS0xLjc1LTIyLjEyNy05LjcxMS0yOS44ODZsLTgxLjA2NS03OS4wMTljLTIuNzEzLTIuNjQ2LTIuMDk5LTUuNzIzLTEuNzA4LTYuOTIzICAgIGMwLjM4OS0xLjIwMSwxLjcwMi00LjA1Miw1LjQ1MS00LjU5NmwxMTIuMDI3LTE2LjI3OWMxMC45OTktMS41OTgsMjAuNTA0LTguNTAyLDI1LjQyNC0xOC40NzFsNTAuMTAxLTEwMS41MTYgICAgYzEuNjc3LTMuMzk3LDQuNzkzLTMuNzY0LDYuMDU2LTMuNzY0YzEuMjYxLDAsNC4zNzcsMC4zNjYsNi4wNTUsMy43NjR2MC4wMDFsNTAuMTAxLDEwMS41MTYgICAgYzQuOTE5LDkuOTY5LDE0LjQyMywxNi44NzMsMjUuNDIyLDE4LjQ3MWwxMTIuMDI5LDE2LjI3OWMzLjc0OSwwLjU0NCw1LjA2MSwzLjM5NSw1LjQ1MSw0LjU5NiAgICBjMC4zOSwxLjIwMSwxLjAwNSw0LjI3OS0xLjcwOSw2LjkyM2wtODEuMDY1LDc5LjAxOUMzNjQuMzI5LDI2OS4xNDksMzYwLjcsMjgwLjMyMSwzNjIuNTc5LDI5MS4yNzZ6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNNDEzLjc4MywyMi42MjVjLTYuMDM2LTQuMzg0LTE0LjQ4MS0zLjA0Ni0xOC44NjUsMi45ODhsLTE0LjMzNywxOS43MzJjLTQuMzg0LDYuMDM0LTMuMDQ3LDE0LjQ4MSwyLjk4OCwxOC44NjUgICAgYzIuMzk5LDEuNzQxLDUuMTc2LDIuNTgsNy45MjgsMi41OGM0LjE3NywwLDguMjk1LTEuOTMxLDEwLjkzNy01LjU2N2wxNC4zMzctMTkuNzMyICAgIEM0MjEuMTU1LDM1LjQ1Niw0MTkuODE4LDI3LjAwOSw0MTMuNzgzLDIyLjYyNXoiIGZpbGw9IiNGRkZGRkYiLz4KCTwvZz4KPC9nPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0xMzEuMzYsNDUuMjY1bC0xNC4zMzctMTkuNzMyYy00LjM4My02LjAzMi0xMi44MjktNy4zNy0xOC44NjUtMi45ODhjLTYuMDM0LDQuMzg0LTcuMzcyLDEyLjgzMS0yLjk4OCwxOC44NjUgICAgbDE0LjMzNywxOS43MzJjMi42NDMsMy42MzksNi43NjEsNS41NjksMTAuOTM5LDUuNTY5YzIuNzUzLDAsNS41MzEtMC44MzksNy45MjctMi41ODFDMTM0LjQwNyw1OS43NDcsMTM1Ljc0NSw1MS4zLDEzMS4zNiw0NS4yNjUgICAgeiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQ5LjU1MiwzMDYuODI5Yy0yLjMwNS03LjA5My05LjkyNC0xMC45NzYtMTcuMDE5LTguNjcxbC0yMy4xOTcsNy41MzhjLTcuMDk1LDIuMzA1LTEwLjk3Niw5LjkyNi04LjY3MSwxNy4wMTkgICAgYzEuODU0LDUuNzA5LDcuMTQ5LDkuMzM3LDEyLjg0Miw5LjMzN2MxLjM4MywwLDIuNzktMC4yMTUsNC4xNzctMC42NjZsMjMuMTk3LTcuNTM4ICAgIEM0Ny45NzUsMzIxLjU0Myw1MS44NTcsMzEzLjkyNCw0OS41NTIsMzA2LjgyOXoiIGZpbGw9IiNGRkZGRkYiLz4KCTwvZz4KPC9nPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0yNTYuMDA1LDQ1Ni43ODZjLTcuNDU5LDAtMTMuNTA2LDYuMDQ3LTEzLjUwNiwxMy41MDZ2MjQuMzkyYzAsNy40NTksNi4wNDcsMTMuNTA2LDEzLjUwNiwxMy41MDYgICAgYzcuNDU5LDAsMTMuNTA2LTYuMDQ3LDEzLjUwNi0xMy41MDZ2LTI0LjM5MkMyNjkuNTExLDQ2Mi44MzIsMjYzLjQ2NSw0NTYuNzg2LDI1Ni4wMDUsNDU2Ljc4NnoiIGZpbGw9IiNGRkZGRkYiLz4KCTwvZz4KPC9nPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik01MDIuNjY0LDMwNS43MTVsLTIzLjE5Ny03LjUzOGMtNy4wOTItMi4zMDMtMTQuNzE0LDEuNTc3LTE3LjAxOSw4LjY3MmMtMi4zMDUsNy4wOTUsMS41NzYsMTQuNzE0LDguNjcxLDE3LjAxOSAgICBsMjMuMTk3LDcuNTM4YzEuMzg3LDAuNDUsMi43OTMsMC42NjQsNC4xNzYsMC42NjRjNS42OTQsMCwxMC45ODktMy42MjksMTIuODQzLTkuMzM3ICAgIEM1MTMuNjQsMzE1LjYzOSw1MDkuNzU4LDMwOC4wMiw1MDIuNjY0LDMwNS43MTV6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  height: 100%;
  width: 30px;
  background-size: 100%;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0px auto 0;
  min-height: 30px;
}

/* line 127, resources/assets/styles/common/_global.scss */

.transitions,
.dynamic-content,
.dynamic-content *,
#dev-info,
.btn,
.comment-form input[type="submit"],
.slider-details p,
.slider-details .slide-content,
.opener,
.welcome-filter,
.tag,
form .form-fields,
form .form-thank-you,
.modal-container,
.modal-newsletter form .contact-details label input,
.modal-fragen form label input,
.modal-fragen form label textarea,
.modal-kundenkarte form label input,
.modal-kundenkarte form label textarea,
.map i,
.map-container i,
.map:before,
.map-container:before,
.map-overlay:after,
.bodyfilter.male .body-dot,
.bodyfilter.female .body-dot,
.hub-widget .single-item .img-wrap img,
.testimonial-slider-item *,
.single-item .bg-image,
.specials-hub-widget .special-item .special-thumbnail img.attachment-post_thumbnail,
.specials-hub-widget .special-item .special-label-block,
.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text .item-gallery-nav .gallery-thumbnail,
.header,
.fixed-nav-item,
.health-tips-items .item .thumbnail-image,
.post-content,
.post-content .scrollable {
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

/* line 135, resources/assets/styles/common/_global.scss */

.transitions_x1 {
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

/* line 143, resources/assets/styles/common/_global.scss */

.transitions_x2 {
  -webkit-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  transition: all .4s ease-in;
}

/* line 151, resources/assets/styles/common/_global.scss */

.kc-container {
  max-width: 1250px !important;
}

/* line 155, resources/assets/styles/common/_global.scss */

.kc-wrap-columns::after {
  display: block;
  content: "";
  clear: both;
}

/* line 161, resources/assets/styles/common/_global.scss */

[data-kc-fullwidth] {
  max-width: 100%;
  left: 0 !important;
}

/* line 169, resources/assets/styles/common/_global.scss */

[data-kc-fullwidth] > .kc-row-container > .kc-wrap-columns > .kc_col-sm-12 {
  padding-left: 0;
  padding-right: 0;
}

/* line 178, resources/assets/styles/common/_global.scss */

*:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 185, resources/assets/styles/common/_global.scss */

a:hover {
  text-decoration: none !important;
}

/* CMS Tables */

/* line 194, resources/assets/styles/common/_global.scss */

.rotpunkt-table {
  width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 198, resources/assets/styles/common/_global.scss */

  .rotpunkt-table td {
    width: 50%;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 15px;
  }

  /* line 206, resources/assets/styles/common/_global.scss */

  .rotpunkt-table td + td {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  /* line 215, resources/assets/styles/common/_global.scss */

  .rotpunkt-table td,
  .rotpunkt-table tbody,
  .rotpunkt-table tr {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}

/* line 227, resources/assets/styles/common/_global.scss */

.emarald-border {
  border: 2px solid #009b67;
}

/* line 232, resources/assets/styles/common/_global.scss */

.no-image-heading {
  padding: 160px 0 60px;
}

/* line 238, resources/assets/styles/common/_global.scss */

strong.red-text {
  color: #c80205;
}

/* line 242, resources/assets/styles/common/_global.scss */

.no-bottom-padding {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 247, resources/assets/styles/common/_global.scss */

b,
strong {
  font-weight: bold;
}

/* line 251, resources/assets/styles/common/_global.scss */

h2 b,
h2 strong {
  font-weight: inherit;
}

/* line 255, resources/assets/styles/common/_global.scss */

.close {
  opacity: 1;
}

/* line 258, resources/assets/styles/common/_global.scss */

.close:hover {
  opacity: 0.5;
}

/* line 264, resources/assets/styles/common/_global.scss */

.dynamic-content {
  height: auto;
  overflow: hidden;
  max-height: none;
  min-height: 0;
}

/* line 275, resources/assets/styles/common/_global.scss */

.dynamic-content.has-no-content {
  height: 0;
  padding: 0;
  max-height: 0;
  min-height: 0;
}

/* line 281, resources/assets/styles/common/_global.scss */

.dynamic-content.has-no-content * {
  height: 0;
  padding: 0;
  max-height: 0;
  min-height: 0;
}

/* line 291, resources/assets/styles/common/_global.scss */

#dev-info {
  position: fixed;
  bottom: 0;
  background: #ccc;
  padding: 20px;
  text-align: center;
  width: 100%;
  left: 0;
  z-index: 10000;
  right: 0;
  opacity: .8;
  font-size: 10px;
}

/* line 305, resources/assets/styles/common/_global.scss */

#dev-info:hover {
  opacity: 0;
  pointer-events: none;
}

/* line 311, resources/assets/styles/common/_global.scss */

.kc-animated {
  opacity: 1;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 328, resources/assets/styles/common/_global.scss */

  .mobile-full-width .kc_column,
  .mobile-full-width .kc_column_inner {
    padding: 0;
  }

  /* line 332, resources/assets/styles/common/_global.scss */

  .kc_column,
  .kc_column_inner {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 1023px) {
  /* line 345, resources/assets/styles/common/_global.scss */

  .kc_column,
  .kc_column_inner {
    padding-right: 0;
    padding-left: 0;
  }

  /* line 349, resources/assets/styles/common/_global.scss */

  .icon-heading-wrap2 span {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  /* line 357, resources/assets/styles/common/_global.scss */

  .container,
  .two-column-carousel .tns-outer {
    max-width: 100%;
  }

  /* line 361, resources/assets/styles/common/_global.scss */

  .kc-row-container:not(.kc-container) > .kc-wrap-columns > .kc-elm {
    width: 100%;
  }

  /* line 364, resources/assets/styles/common/_global.scss */

  .content {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    right: 0;
  }

  /* line 370, resources/assets/styles/common/_global.scss */

  .zoom-body {
    opacity: 0;
    right: -100%;
  }

  /* line 374, resources/assets/styles/common/_global.scss */

  section#Loyalty {
    padding-bottom: 50px;
  }
}

/* line 380, resources/assets/styles/common/_global.scss */

.child-site main > section:first-child {
  margin-top: 0;
}

/* used */

@font-face {
  font-family: "Demos Next W01 Regular";
  src: url(/app/themes/rotpunkt/dist/fonts/bee8f9ef-efdd-4c1b-9760-46b1639a47ea.eot);
  src: url(/app/themes/rotpunkt/dist/fonts/bee8f9ef-efdd-4c1b-9760-46b1639a47ea.eot) format("eot"), url(/app/themes/rotpunkt/dist/fonts/f4a83103-6dc2-4e1a-971b-876ba64488e3.woff2) format("woff2"), url(/app/themes/rotpunkt/dist/fonts/77fe28c8-aa54-492e-b4c5-1ae1913d4b23.woff) format("woff"), url(/app/themes/rotpunkt/dist/fonts/2ead3954-394e-4a35-82ad-7614eb2ae86e.ttf) format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Medium";
  src: url(/app/themes/rotpunkt/dist/fonts/2be7b192-99f7-4108-bf02-6e6483737e02.eot);
  src: url(/app/themes/rotpunkt/dist/fonts/2be7b192-99f7-4108-bf02-6e6483737e02.eot) format("eot"), url(/app/themes/rotpunkt/dist/fonts/22c705c9-4671-426e-ab0b-7899f3808935.woff2) format("woff2"), url(/app/themes/rotpunkt/dist/fonts/7b673681-4a6a-4a44-bdc6-d5d55862a182.woff) format("woff"), url(/app/themes/rotpunkt/dist/fonts/a9ef8ae5-b816-49f7-80db-626ead6b1995.ttf) format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Cn Medium";
  src: url(/app/themes/rotpunkt/dist/fonts/3d249f26-a684-448e-b813-a5f04a2ffbbf.eot);
  src: url(/app/themes/rotpunkt/dist/fonts/3d249f26-a684-448e-b813-a5f04a2ffbbf.eot) format("eot"), url(/app/themes/rotpunkt/dist/fonts/75b0e7b1-1ac4-4a9b-bb54-b27c037b35f0.woff2) format("woff2"), url(/app/themes/rotpunkt/dist/fonts/06398ded-9377-4b5c-b777-a2eda09d1743.woff) format("woff"), url(/app/themes/rotpunkt/dist/fonts/886194d0-a9fd-4947-b98a-f120fe8de7c5.ttf) format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Cn";
  src: url(/app/themes/rotpunkt/dist/fonts/3d249f26-a684-448e-b813-a5f04a2ffbbf.eot);
  src: url(/app/themes/rotpunkt/dist/fonts/3d249f26-a684-448e-b813-a5f04a2ffbbf.eot) format("eot"), url(/app/themes/rotpunkt/dist/fonts/75b0e7b1-1ac4-4a9b-bb54-b27c037b35f0.woff2) format("woff2"), url(/app/themes/rotpunkt/dist/fonts/06398ded-9377-4b5c-b777-a2eda09d1743.woff) format("woff"), url(/app/themes/rotpunkt/dist/fonts/886194d0-a9fd-4947-b98a-f120fe8de7c5.ttf) format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Bold";
  src: url(/app/themes/rotpunkt/dist/fonts/21bc2e9b-915f-432d-96dd-7aee19278b99.eot);
  src: url(/app/themes/rotpunkt/dist/fonts/21bc2e9b-915f-432d-96dd-7aee19278b99.eot) format("eot"), url(/app/themes/rotpunkt/dist/fonts/c159c348-b4f9-4634-82ed-409f0038fe5b.woff2) format("woff2"), url(/app/themes/rotpunkt/dist/fonts/20f399e2-7a5a-4bd9-ba8f-82021e260e62.woff) format("woff"), url(/app/themes/rotpunkt/dist/fonts/62078784-183d-41bd-a575-921cfabe4ea4.ttf) format("truetype");
}

/*
@font-face {
  font-family: "Demos Next W01 Light Italic";
  src: url("../../fonts/1d16b657-970d-4788-9c21-8aca4493cef8.eot?#iefix");
  src: url("../../fonts/1d16b657-970d-4788-9c21-8aca4493cef8.eot?#iefix") format("eot"), url("../../fonts/26412a5d-9397-4429-aec4-79124749019f.woff2") format("woff2"), url("../../fonts/3a16aff4-6daa-4c48-9cf5-a2538face745.woff") format("woff"), url("../../fonts/dd76c500-be25-4ac1-9bd0-402ebb6fad2e.ttf") format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Italic";
  src: url("../../fonts/e7d94371-3a09-4679-ad47-43477d3183ce.eot?#iefix");
  src: url("../../fonts/e7d94371-3a09-4679-ad47-43477d3183ce.eot?#iefix") format("eot"), url("../../fonts/573add32-d0ba-4853-8dce-263ba7df72c6.woff2") format("woff2"), url("../../fonts/09415d64-095c-4f9e-b5c7-4646d41e1b90.woff") format("woff"), url("../../fonts/67df74d1-a5a8-4016-85ab-272d34e1f44e.ttf") format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Medium Italic";
  src: url("../../fonts/168eef6d-390a-448e-a294-0df9ac4fca4b.eot?#iefix");
  src: url("../../fonts/168eef6d-390a-448e-a294-0df9ac4fca4b.eot?#iefix") format("eot"), url("../../fonts/8bf97ce6-3946-44ee-a119-ca1c61f5b2ac.woff2") format("woff2"), url("../../fonts/4b4cff8d-28e2-4158-9ff4-3646390c198f.woff") format("woff"), url("../../fonts/5b5065e7-7939-454d-8f04-1dbe6d02a335.ttf") format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Bold Italic";
  src: url("../../fonts/fc11e1b8-030e-4341-94b4-92ff4a8def1e.eot?#iefix");
  src: url("../../fonts/fc11e1b8-030e-4341-94b4-92ff4a8def1e.eot?#iefix") format("eot"), url("../../fonts/7b864a92-9965-4ea9-a02b-d017df7ef70d.woff2") format("woff2"), url("../../fonts/c4d1cd49-b388-4419-9df3-f1100ab07f3b.woff") format("woff"), url("../../fonts/b94ffcf2-b9c0-47d4-88b2-cb20d927945d.ttf") format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Cn Light";
  src: url("../../fonts/acc8e63a-45a7-4360-b87c-1f4dfc8e5ef1.eot?#iefix");
  src: url("../../fonts/acc8e63a-45a7-4360-b87c-1f4dfc8e5ef1.eot?#iefix") format("eot"), url("../../fonts/d1c619bf-952f-469c-be88-969404b69dff.woff2") format("woff2"), url("../../fonts/9299e292-f0da-4034-9c8b-89f13e93e2e7.woff") format("woff"), url("../../fonts/af0792af-6f8e-4021-a0ef-761766fa023f.ttf") format("truetype");
}


@font-face {
  font-family: "Demos Next W01 Cn Bold";
  src: url("../../fonts/8a6304db-eb03-404d-a7af-4e503c597c3f.eot?#iefix");
  src: url("../../fonts/8a6304db-eb03-404d-a7af-4e503c597c3f.eot?#iefix") format("eot"), url("../../fonts/235ce7c6-fc39-4577-be5a-eb97486a0a04.woff2") format("woff2"), url("../../fonts/da745dfa-81d9-4be4-8cda-e503101094c7.woff") format("woff"), url("../../fonts/d423d301-94ec-461d-b235-05089c5cbd90.ttf") format("truetype");
}

@font-face {
  font-family: "Demos Next W01 Light";
  src: url("../../fonts/bf73e4e4-f300-4387-be95-37ee7a61487a.eot?#iefix");
  src: url("../../fonts/bf73e4e4-f300-4387-be95-37ee7a61487a.eot?#iefix") format("eot"), url("../../fonts/4bce5be4-4fa6-49ab-8176-a5dbd035ffb1.woff2") format("woff2"), url("../../fonts/51d397d6-4f08-4ec3-93bb-2f84470dbfed.woff") format("woff"), url("../../fonts/6b34adae-1aee-4f23-9144-32d2d6e7c8ef.ttf") format("truetype");
}



@font-face {
  font-family: "Demos Next W01 Heavy";
  src: url("../../fonts/24dc3587-077f-4d89-b878-2e3a66cda6e8.eot?#iefix");
  src: url("../../fonts/24dc3587-077f-4d89-b878-2e3a66cda6e8.eot?#iefix") format("eot"),
    url("../../fonts/40991571-2866-4174-9a61-7014c3dac5f0.woff2") format("woff2"),
    url("../../fonts/5d5a6a10-f97f-447b-bb03-5bc751693b5b.woff") format("woff"),
    url("../../fonts/48da9ef8-694d-4c34-8e1e-4351a5cef60a.ttf") format("truetype");
}
 */

/* Text styles */

@font-face {
  font-family: 'fontello';
  src: url(/app/themes/rotpunkt/dist/fonts/fontello/font/fontello.eot);
  src: url(/app/themes/rotpunkt/dist/fonts/fontello/font/fontello.eot) format("embedded-opentype"), url(/app/themes/rotpunkt/dist/fonts/fontello/font/fontello.woff2) format("woff2"), url(/app/themes/rotpunkt/dist/fonts/fontello/font/fontello.woff) format("woff"), url(/app/themes/rotpunkt/dist/fonts/fontello/font/fontello.ttf) format("truetype"), url(/app/themes/rotpunkt/dist/fonts/fontello/font/fontello.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */

/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */

/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?94680157#fontello') format('svg');
  }
}
*/

/* line 35, resources/assets/styles/common/_icons.scss */

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello", sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* line 69, resources/assets/styles/common/_icons.scss */

.icon-hae-logo {
  margin: 0;
  padding: 0;
}

/* line 72, resources/assets/styles/common/_icons.scss */

.icon-hae-logo:before {
  content: ' ';
  display: block;
  background-image: url(/app/themes/rotpunkt/dist/images/hae-logo.svg);
  width: 160px;
  height: 160px;
  background-size: contain;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
}

/* line 86, resources/assets/styles/common/_icons.scss */

.icon-pharmacy {
  margin: 0;
  padding: 0;
  width: 160px;
  height: 160px;
  position: relative;
}

/* line 92, resources/assets/styles/common/_icons.scss */

.icon-pharmacy:before {
  content: ' ';
  display: block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIzOCIgdmlld0JveD0iMCAwIDIwIDM4Ij4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xIHsKICAgICAgICBmaWxsOiAjYzkwMDE5OwogICAgICB9CgogICAgICAuY2xzLTIgewogICAgICAgIGZpbGw6ICMwMDdlMzE7CiAgICAgIH0KICAgIDwvc3R5bGU+CiAgPC9kZWZzPgogIDxnIGlkPSJyb3RwdW5rdF9Mb2dvIiBkYXRhLW5hbWU9InJvdHB1bmt0IExvZ28iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00LjM3OCAtMS43MTEpIj4KICAgIDxnIGlkPSJMYXllcl8xIiBkYXRhLW5hbWU9IkxheWVyIDEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuMzc4IDEuNzExKSI+CiAgICAgIDxnIGlkPSJHcm91cF8zODAiIGRhdGEtbmFtZT0iR3JvdXAgMzgwIj4KICAgICAgICA8cGF0aCBpZD0iUGF0aF8zMDMiIGRhdGEtbmFtZT0iUGF0aCAzMDMiIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjkzMSw4OC41ODdhNy41NjIsNy41NjIsMCwxLDAtNy41NTctNy41Niw3LjU2Miw3LjU2MiwwLDAsMCw3LjU1Nyw3LjU2WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQuNDUxIC01MS4yOTgpIi8+CiAgICAgICAgPHBhdGggaWQ9IlBhdGhfMzA0IiBkYXRhLW5hbWU9IlBhdGggMzA0IiBjbGFzcz0iY2xzLTIiIGQ9Ik0xOC4zODMsNi4yMzdIMTIuMjQ1VjBoLTYuMVY2LjIzN0gwdjUuOTQ5SDYuMTQ4VjE4LjRoNi4xVjEyLjE4Nmg2LjEzOFY2LjIzN1oiLz4KICAgICAgPC9nPgogICAgPC9nPgogIDwvZz4KPC9zdmc+Cg==);
  width: 100%;
  height: 100%;
  background-size: 36%;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border-radius: 100%;
}

/* line 112, resources/assets/styles/common/_icons.scss */

.icon-fragen_icon:before {
  content: '\E800';
}

/* '' */

/* line 113, resources/assets/styles/common/_icons.scss */

.icon-compass:before {
  content: '\E801';
}

/* '' */

/* line 114, resources/assets/styles/common/_icons.scss */

.icon-urine-test:before {
  content: '\E802';
}

/* '' */

/* line 115, resources/assets/styles/common/_icons.scss */

.icon-search:before {
  content: '\E803';
}

/* '' */

/* line 116, resources/assets/styles/common/_icons.scss */

.icon-travel:before {
  content: '\E804';
}

/* '' */

/* line 117, resources/assets/styles/common/_icons.scss */

.icon-newsletter---mail:before {
  content: '\E805';
}

/* '' */

/* line 118, resources/assets/styles/common/_icons.scss */

.icon-impfberatung:before {
  content: '\E806';
}

/* '' */

/* line 119, resources/assets/styles/common/_icons.scss */

.icon-grippeimpfung:before {
  content: '\E807';
}

/* '' */

/* line 120, resources/assets/styles/common/_icons.scss */

.icon-calender:before {
  content: '\E808';
}

/* '' */

/* line 121, resources/assets/styles/common/_icons.scss */

.icon-blutdruckmessung:before {
  content: '\E809';
}

/* '' */

/* line 122, resources/assets/styles/common/_icons.scss */

.icon-band-aid:before {
  content: '\E80A';
}

/* '' */

/* line 123, resources/assets/styles/common/_icons.scss */

.icon-zeckenimpfung:before {
  content: '\E80B';
}

/* '' */

/* line 124, resources/assets/styles/common/_icons.scss */

.icon-aktionen:before {
  content: '\E80E';
}

/* '' */

/* line 125, resources/assets/styles/common/_icons.scss */

.icon-gesundheitsratgeber:before,
.icon-health-tips:before {
  content: '\E80F';
}

/* '' */

/* line 126, resources/assets/styles/common/_icons.scss */

.icon-gesundheit:before,
.icon-band-aid:before {
  content: '\E838';
}

/* '' */

/* line 127, resources/assets/styles/common/_icons.scss */

.icon-grippeimpfung-1:before {
  content: '\E810';
}

/* '' */

/* line 128, resources/assets/styles/common/_icons.scss */

.icon-newlsetter-icon:before {
  content: '\E811';
}

/* '' */

/* line 129, resources/assets/styles/common/_icons.scss */

.icon-alternative_medicine:before {
  content: '\E812';
}

/* '' */

/* line 131, resources/assets/styles/common/_icons.scss */

.icon-arrow-right:before {
  content: '\E814';
}

/* '' */

/* line 132, resources/assets/styles/common/_icons.scss */

.icon-arrow-up:before {
  content: '\E815';
}

/* '' */

/* line 133, resources/assets/styles/common/_icons.scss */

.icon-arrow-left:before {
  content: '\E816';
}

/* '' */

/* line 134, resources/assets/styles/common/_icons.scss */

.icon-auf_dem_punkt:before {
  content: '\E817';
}

/* '' */

/* line 135, resources/assets/styles/common/_icons.scss */

.icon-blister-service:before {
  content: '\E819';
}

/* '' */

/* line 136, resources/assets/styles/common/_icons.scss */

.icon-blood-sugar:before {
  content: '\E81B';
}

/* '' */

/* line 138, resources/assets/styles/common/_icons.scss */

.icon-hand-box:before {
  content: '\E822';
}

/* '' */

/* line 139, resources/assets/styles/common/_icons.scss */

.icon-heartbeat:before {
  content: '\E823';
}

/* '' */

/* line 140, resources/assets/styles/common/_icons.scss */

.icon-fragen:before {
  content: '\E824';
}

/* '' */

/* line 141, resources/assets/styles/common/_icons.scss */

.icon-female:before {
  content: '\E825';
}

/* '' */

/* line 142, resources/assets/styles/common/_icons.scss */

.icon-blood-sugar-check:before {
  content: '\E826';
}

/* '' */

/* line 143, resources/assets/styles/common/_icons.scss */

.icon-job:before {
  content: '\E827';
}

/* '' */

/* line 144, resources/assets/styles/common/_icons.scss */

.icon-map:before {
  content: '\E828';
}

/* '' */

/* line 145, resources/assets/styles/common/_icons.scss */

.icon-compression:before {
  content: '\E829';
}

/* '' */

/* line 146, resources/assets/styles/common/_icons.scss */

.icon-contact:before {
  content: '\E82A';
}

/* '' */

/* line 147, resources/assets/styles/common/_icons.scss */

.icon-leaf:before {
  content: '\E82B';
}

/* '' */

/* line 148, resources/assets/styles/common/_icons.scss */

.icon-intranet:before {
  content: '\E82C';
}

/* '' */

/* line 149, resources/assets/styles/common/_icons.scss */

.icon-location:before {
  content: '\E82D';
}

/* '' */

/* line 150, resources/assets/styles/common/_icons.scss */

.icon-ohr-check:before {
  content: '\E830';
}

/* '' */

/* line 151, resources/assets/styles/common/_icons.scss */

.icon-after-pill:before {
  content: '\E831';
}

/* '' */

/* line 153, resources/assets/styles/common/_icons.scss */

.icon-apotheke:before,
.icon-compass:before,
.map-overlay:after {
  content: '\E836';
}

/* '' */

/* line 154, resources/assets/styles/common/_icons.scss */

.icon-bandage:before {
  content: '\E837';
}

/* '' */

/* line 156, resources/assets/styles/common/_icons.scss */

.icon-saisonal:before,
.icon-leaf:before {
  content: '\E839';
}

/* '' */

/* line 157, resources/assets/styles/common/_icons.scss */

.icon-allergie-check:before,
.icon-allergy-check:before {
  content: '\E83A';
}

/* '' */

/* line 158, resources/assets/styles/common/_icons.scss */

.icon-angle-left:before {
  content: '\F104';
}

/* '' */

/* line 159, resources/assets/styles/common/_icons.scss */

.icon-angle-right:before {
  content: '\F105';
}

/* '' */

/* line 160, resources/assets/styles/common/_icons.scss */

.icon-angle-up:before {
  content: '\F106';
}

/* '' */

/* line 161, resources/assets/styles/common/_icons.scss */

.icon-angle-down:before {
  content: '\F107';
}

/* '' */

/* line 162, resources/assets/styles/common/_icons.scss */

.icon-twitter:before {
  content: '\F309';
}

/* '' */

/* line 163, resources/assets/styles/common/_icons.scss */

.icon-facebook:before {
  content: '\F30C';
}

/* '' */

/* line 164, resources/assets/styles/common/_icons.scss */

.icon-gplus:before {
  content: '\F30F';
}

/* '' */

/* line 165, resources/assets/styles/common/_icons.scss */

.icon-pinterest:before {
  content: '\F312';
}

/* '' */

/* line 166, resources/assets/styles/common/_icons.scss */

.icon-serviceleistung:before,
.icon-medic:before {
  content: '\E813';
}

/* '' */

/* line 169, resources/assets/styles/common/_icons.scss */

.icon-apotheke:before,
.icon-compass:before,
.map-overlay:after {
  width: 1.5em;
}

/* line 180, resources/assets/styles/common/_icons.scss */

.icon-fragen_icon:before {
  content: '\E800';
}

/* '' */

/* line 181, resources/assets/styles/common/_icons.scss */

.icon-compass:before {
  content: '\E801';
}

/* '' */

/* line 182, resources/assets/styles/common/_icons.scss */

.icon-urine-test:before {
  content: '\E802';
}

/* '' */

/* line 183, resources/assets/styles/common/_icons.scss */

.icon-search:before {
  content: '\E803';
}

/* '' */

/* line 184, resources/assets/styles/common/_icons.scss */

.icon-travel:before {
  content: '\E804';
}

/* '' */

/* line 185, resources/assets/styles/common/_icons.scss */

.icon-newsletter---mail:before {
  content: '\E805';
}

/* '' */

/* line 186, resources/assets/styles/common/_icons.scss */

.icon-impfberatung:before {
  content: '\E806';
}

/* '' */

/* line 187, resources/assets/styles/common/_icons.scss */

.icon-grippeimpfung:before {
  content: '\E807';
}

/* '' */

/* line 188, resources/assets/styles/common/_icons.scss */

.icon-calender:before {
  content: '\E808';
}

/* '' */

/* line 189, resources/assets/styles/common/_icons.scss */

.icon-blutdruckmessung:before {
  content: '\E809';
}

/* '' */

/* line 190, resources/assets/styles/common/_icons.scss */

.icon-band-aid:before {
  content: '\E80A';
}

/* '' */

/* line 191, resources/assets/styles/common/_icons.scss */

.icon-zeckenimpfung:before {
  content: '\E80B';
}

/* '' */

/* line 192, resources/assets/styles/common/_icons.scss */

.icon-neiren-check:before {
  content: '\E80C';
}

/* '' */

/* line 193, resources/assets/styles/common/_icons.scss */

.icon-pills:before {
  content: '\E80D';
}

/* '' */

/* line 194, resources/assets/styles/common/_icons.scss */

.icon-aktionen:before {
  content: '\E80E';
}

/* '' */

/* line 195, resources/assets/styles/common/_icons.scss */

.icon-gesundheitsratgeber:before,
.icon-health-tips:before {
  content: '\E80F';
}

/* '' */

/* line 196, resources/assets/styles/common/_icons.scss */

.icon-grippeimpfung-1:before {
  content: '\E810';
}

/* '' */

/* line 197, resources/assets/styles/common/_icons.scss */

.icon-newlsetter-icon:before {
  content: '\E811';
}

/* '' */

/* line 198, resources/assets/styles/common/_icons.scss */

.icon-alternative_medicine:before {
  content: '\E812';
}

/* '' */

/* line 199, resources/assets/styles/common/_icons.scss */

.icon-serviceleistung:before,
.icon-medic:before {
  content: '\E813';
}

/* '' */

/* line 200, resources/assets/styles/common/_icons.scss */

.icon-arrow-right:before {
  content: '\E814';
}

/* '' */

/* line 201, resources/assets/styles/common/_icons.scss */

.icon-arrow-up:before {
  content: '\E815';
}

/* '' */

/* line 202, resources/assets/styles/common/_icons.scss */

.icon-arrow-left:before {
  content: '\E816';
}

/* '' */

/* line 203, resources/assets/styles/common/_icons.scss */

.icon-auf_dem_punkt:before {
  content: '\E817';
}

/* '' */

/* line 204, resources/assets/styles/common/_icons.scss */

.icon-blister-service:before {
  content: '\E819';
}

/* '' */

/* line 205, resources/assets/styles/common/_icons.scss */

.icon-blood-sugar:before {
  content: '\E81B';
}

/* '' */

/* line 206, resources/assets/styles/common/_icons.scss */

.icon-health-tips:before {
  content: '\E81F';
}

/* '' */

/* line 207, resources/assets/styles/common/_icons.scss */

.icon-heartbeat:before {
  content: '\E823';
}

/* '' */

/* line 208, resources/assets/styles/common/_icons.scss */

.icon-fragen:before {
  content: '\E824';
}

/* '' */

/* line 209, resources/assets/styles/common/_icons.scss */

.icon-female:before {
  content: '\E825';
}

/* '' */

/* line 210, resources/assets/styles/common/_icons.scss */

.icon-blood-sugar-check:before {
  content: '\E826';
}

/* '' */

/* line 211, resources/assets/styles/common/_icons.scss */

.icon-job:before {
  content: '\E827';
}

/* '' */

/* line 212, resources/assets/styles/common/_icons.scss */

.icon-map:before {
  content: '\E828';
}

/* '' */

/* line 213, resources/assets/styles/common/_icons.scss */

.icon-compression:before {
  content: '\E829';
}

/* '' */

/* line 214, resources/assets/styles/common/_icons.scss */

.icon-contact:before {
  content: '\E82A';
}

/* '' */

/* line 215, resources/assets/styles/common/_icons.scss */

.icon-leaf:before {
  content: '\E82B';
}

/* '' */

/* line 216, resources/assets/styles/common/_icons.scss */

.icon-intranet:before {
  content: '\E82C';
}

/* '' */

/* line 217, resources/assets/styles/common/_icons.scss */

.icon-location:before {
  content: '\E82D';
}

/* '' */

/* line 218, resources/assets/styles/common/_icons.scss */

.icon-ohr-check:before {
  content: '\E830';
}

/* '' */

/* line 219, resources/assets/styles/common/_icons.scss */

.icon-after-pill:before {
  content: '\E831';
}

/* '' */

/* line 220, resources/assets/styles/common/_icons.scss */

.icon-hand-box:before {
  content: '\E832';
}

/* '' */

/* line 221, resources/assets/styles/common/_icons.scss */

.icon-medic:before {
  content: '\E834';
}

/* '' */

/* line 222, resources/assets/styles/common/_icons.scss */

.icon-cpr-messung:before {
  content: '\E835';
}

/* '' */

/* line 223, resources/assets/styles/common/_icons.scss */

.icon-apotheke:before,
.icon-compass:before,
.map-overlay:after {
  content: '\E836';
}

/* '' */

/* line 224, resources/assets/styles/common/_icons.scss */

.icon-bandage:before {
  content: '\E837';
}

/* '' */

/* line 225, resources/assets/styles/common/_icons.scss */

.icon-gesundheit:before,
.icon-band-aid:before {
  content: '\E838';
}

/* '' */

/* line 226, resources/assets/styles/common/_icons.scss */

.icon-saisonal:before,
.icon-leaf:before {
  content: '\E839';
}

/* '' */

/* line 227, resources/assets/styles/common/_icons.scss */

.icon-allergie-check:before,
.icon-allergy-check:before {
  content: '\E83A';
}

/* '' */

/* line 228, resources/assets/styles/common/_icons.scss */

.icon-angle-left:before {
  content: '\F104';
}

/* '' */

/* line 229, resources/assets/styles/common/_icons.scss */

.icon-angle-right:before {
  content: '\F105';
}

/* '' */

/* line 230, resources/assets/styles/common/_icons.scss */

.icon-angle-up:before {
  content: '\F106';
}

/* '' */

/* line 231, resources/assets/styles/common/_icons.scss */

.icon-angle-down:before {
  content: '\F107';
}

/* '' */

/* line 232, resources/assets/styles/common/_icons.scss */

.icon-twitter:before {
  content: '\F309';
}

/* '' */

/* line 233, resources/assets/styles/common/_icons.scss */

.icon-facebook:before {
  content: '\F30C';
}

/* '' */

/* line 234, resources/assets/styles/common/_icons.scss */

.icon-gplus:before {
  content: '\F30F';
}

/* '' */

/* line 235, resources/assets/styles/common/_icons.scss */

.icon-pinterest:before {
  content: '\F312';
}

/* '' */

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 258, resources/assets/styles/common/_icons.scss */

  .icon-hae-logo:before {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  /* line 272, resources/assets/styles/common/_icons.scss */

  .icon-hae-logo:before {
    width: 162px;
    height: 162px;
    margin-bottom: 40px;
  }

  /* line 277, resources/assets/styles/common/_icons.scss */

  #Loyalty i.icon.icon-aktionen {
    font-size: 98px;
  }
}

@media screen and (max-width: 480px) {
  /* line 30, resources/assets/styles/common/_typography.scss */

  .health_tips-widget .headline h3,
  .health_tips-widget .headline .overline {
    font-size: 20px !important;
  }

  /* line 34, resources/assets/styles/common/_typography.scss */

  .health_tips-widget .headline h2,
  .health_tips-widget .headline .main-heading {
    font-size: 33px !important;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.12;
    letter-spacing: normal;
    text-align: center;
  }
}

/* line 2, resources/assets/styles/components/_buttons.scss */

.event-button * {
  pointer-events: none;
}

/* line 7, resources/assets/styles/components/_buttons.scss */

.form-trigger {
  display: none;
}

/* line 11, resources/assets/styles/components/_buttons.scss */

.booking-button {
  white-space: nowrap;
}

/* line 15, resources/assets/styles/components/_buttons.scss */

button,
.btn-transparent {
  background-color: transparent;
}

/* line 19, resources/assets/styles/components/_buttons.scss */

.btn-clear {
  clear: both;
  display: inline-block;
  width: auto;
  margin: 10px 0 15px;
}

/* line 26, resources/assets/styles/components/_buttons.scss */

.btn,
.comment-form input[type="submit"] {
  font-family: "Oxygen-bold", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.27;
  text-align: center;
  border: 2px solid;
  letter-spacing: 0;
  text-transform: uppercase;
  min-width: 165px;
  text-align: center;
  padding: 6px 18px;
}

@media screen and (max-width: 1023px) {
  /* line 26, resources/assets/styles/components/_buttons.scss */

  .btn,
  .comment-form input[type="submit"] {
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
  }
}

@media screen and (max-width: 1023px) {
  /* line 26, resources/assets/styles/components/_buttons.scss */

  .btn,
  .comment-form input[type="submit"] {
    padding: 9px 18px;
  }
}

/* line 40, resources/assets/styles/components/_buttons.scss */

.btn.centered,
.comment-form input.centered[type="submit"] {
  margin: 20px auto;
  display: inline-block;
}

/* line 46, resources/assets/styles/components/_buttons.scss */

.btn.dark,
.comment-form input.dark[type="submit"] {
  border-color: #000000 !important;
  color: #000000 !important;
}

/* line 52, resources/assets/styles/components/_buttons.scss */

.btn.white,
.comment-form input.white[type="submit"] {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* line 59, resources/assets/styles/components/_buttons.scss */

.btn:not(.disabled):hover,
.comment-form input:not(.disabled):hover[type="submit"] {
  opacity: 0.6;
}

/* line 64, resources/assets/styles/components/_buttons.scss */

.btn .disabled,
.comment-form input[type="submit"] .disabled,
.btn .btn:disabled,
.comment-form input[type="submit"] .btn:disabled,
.btn .comment-form input:disabled[type="submit"],
.comment-form .btn input:disabled[type="submit"],
.comment-form input[type="submit"] input:disabled[type="submit"] {
  cursor: not-allowed;
}

/* line 71, resources/assets/styles/components/_buttons.scss */

.btn-bordered {
  border-width: 2px;
  border-style: solid;
}

/* line 75, resources/assets/styles/components/_buttons.scss */

.btn-bordered[type="submit"] {
  background-color: #ffffff;
}

/* line 81, resources/assets/styles/components/_buttons.scss */

.btn-lg,
.btn-group-lg > .btn,
.comment-form .btn-group-lg > input[type="submit"] {
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.22;
  text-align: center;
}

/* line 86, resources/assets/styles/components/_buttons.scss */

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 91, resources/assets/styles/components/_buttons.scss */

.buttons .btn:first-child,
.buttons .comment-form input:first-child[type="submit"],
.comment-form .buttons input:first-child[type="submit"] {
  margin-right: 30px;
}

/* line 97, resources/assets/styles/components/_buttons.scss */

*:focus {
  outline: none !important;
}

@media screen and (max-width: 767px) {
  /* line 105, resources/assets/styles/components/_buttons.scss */

  .buttons .btn:first-child,
  .buttons .comment-form input:first-child[type="submit"],
  .comment-form .buttons input:first-child[type="submit"] {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}

/* line 5, resources/assets/styles/components/_comments.scss */

.comment-list ol {
  list-style: none;
}

/* line 1, resources/assets/styles/components/_forms.scss */

.form-input .error {
  display: none;
  width: 100%;
  padding-top: 5px;
  color: #c80205;
}

/* line 8, resources/assets/styles/components/_forms.scss */

.form-input.incorrect .error {
  display: block;
}

/* line 12, resources/assets/styles/components/_forms.scss */

.form-input.incorrect input,
.form-input.incorrect select,
.form-input.incorrect textarea {
  border-color: #c80205;
}

/* line 18, resources/assets/styles/components/_forms.scss */

label {
  width: 100%;
}

/* line 22, resources/assets/styles/components/_forms.scss */

input[type="file"] {
  display: block;
  -webkit-appearance: none;
  margin: 20px 0;
}

/* Take away arrwos from number inputs */

/* Firefox only: */

/* line 34, resources/assets/styles/components/_forms.scss */

input[type='number'] {
  -moz-appearance: textfield;
}

/* line 38, resources/assets/styles/components/_forms.scss */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 44, resources/assets/styles/components/_forms.scss */

.form-control:focus,
.comment-form input:focus[type="text"],
.comment-form input:focus[type="email"],
.comment-form input:focus[type="url"],
.comment-form textarea:focus,
.comment-form input:focus[type="text"],
.comment-form input:focus[type="email"],
.comment-form input:focus[type="url"],
.comment-form textarea:focus {
  border-color: #c80205;
}

/* line 50, resources/assets/styles/components/_forms.scss */

.form-group.checkboxes:after,
.comment-form p.checkboxes:after,
.form-field:after {
  content: ' ';
  font-weight: bold;
  color: #c80205;
  font-size: 18px;
}

/* line 58, resources/assets/styles/components/_forms.scss */

.form-group.checkboxes.errors:after,
.comment-form p.checkboxes.errors:after,
.form-field.errors:after {
  content: attr(data-errors);
}

/* line 65, resources/assets/styles/components/_forms.scss */

.form-field .drop-down-container {
  margin-left: 0;
}

/* line 70, resources/assets/styles/components/_forms.scss */

.modal-competition .checkboxes {
  margin-bottom: 0;
}

/* line 74, resources/assets/styles/components/_forms.scss */

.modal-competition .checkboxes label {
  width: 100%;
  line-height: normal;
}

/* line 78, resources/assets/styles/components/_forms.scss */

.modal-competition .checkboxes label span {
  position: relative;
  top: -5px;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */

/** Media alignment */

/* line 7, resources/assets/styles/components/_wp-classes.scss */

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

/* line 14, resources/assets/styles/components/_wp-classes.scss */

.aligncenter {
  display: block;
  margin: 0.5rem auto;
  height: auto;
}

/* line 20, resources/assets/styles/components/_wp-classes.scss */

.alignleft,
.alignright {
  margin-bottom: 0.5rem;
  height: auto;
}

@media (min-width: 576px) {
  /* line 27, resources/assets/styles/components/_wp-classes.scss */

  .alignleft {
    float: left;
    margin-right: 0.5rem;
  }

  /* line 32, resources/assets/styles/components/_wp-classes.scss */

  .alignright {
    float: right;
    margin-left: 0.5rem;
  }
}

/** Captions */

/** Text meant only for screen readers */

/* line 1, resources/assets/styles/components/_admin_bar.scss */

body #wpadminbar {
  top: -30px;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  opacity: 0;
}

/* line 9, resources/assets/styles/components/_admin_bar.scss */

body #wpadminbar:hover {
  opacity: 1;
  top: 0;
}

/* line 15, resources/assets/styles/components/_admin_bar.scss */

html[lang] {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  /* line 21, resources/assets/styles/components/_admin_bar.scss */

  html body #wpadminbar {
    display: none;
  }
}

/* line 1, resources/assets/styles/components/_banner.scss */

.banner {
  width: 100%;
}

/* line 3, resources/assets/styles/components/_banner.scss */

.banner img {
  width: 100% !important;
  display: block;
}

/* Tiny Slider */

/* Nav Controls */

/* line 5, resources/assets/styles/components/_sliders.scss */

.tns-outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Dots */

/* line 22, resources/assets/styles/components/_sliders.scss */

.header-slider-widget {
  background-color: #fff;
}

/* line 25, resources/assets/styles/components/_sliders.scss */

.header-slider-widget .tns-controls + .tns-nav {
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  z-index: -20;
}

/* line 34, resources/assets/styles/components/_sliders.scss */

.tns-nav + button {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

/* line 42, resources/assets/styles/components/_sliders.scss */

.tns-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 45, resources/assets/styles/components/_sliders.scss */

.tns-nav button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #000000;
  position: relative;
  width: 15px;
  height: 15px;
  background-color: transparent;
  margin: 0 10px 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0;
}

/* line 61, resources/assets/styles/components/_sliders.scss */

.tns-nav button.tns-nav-active:after {
  content: ' ';
}

/* line 66, resources/assets/styles/components/_sliders.scss */

.tns-nav button:after {
  position: absolute;
  display: block;
  width: 7px;
  pointer-events: none;
  height: 7px;
  background-color: #c80205;
  top: 2px;
  left: 2px;
  margin: 0 auto;
}

/* line 78, resources/assets/styles/components/_sliders.scss */

.tns-nav button:last-child {
  margin-right: 0;
}

/* line 86, resources/assets/styles/components/_sliders.scss */

.light-controls .tns-nav button {
  border: 2px solid #ffffff;
}

/* line 89, resources/assets/styles/components/_sliders.scss */

.light-controls .tns-nav button:after {
  background-color: #ffffff;
}

/* line 98, resources/assets/styles/components/_sliders.scss */

.tns-controls button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
}

/* line 107, resources/assets/styles/components/_sliders.scss */

.slider-dots {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 111, resources/assets/styles/components/_sliders.scss */

.slider-dots a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #ffffff;
  position: relative;
  width: 15px;
  height: 15px;
  background-color: transparent;
  margin-right: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0;
}

/* line 127, resources/assets/styles/components/_sliders.scss */

.slider-dots a.tns-nav-active:after {
  content: ' ';
}

/* line 132, resources/assets/styles/components/_sliders.scss */

.slider-dots a:after {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  top: 2px;
  left: 2px;
  margin: 0 auto;
}

/* line 146, resources/assets/styles/components/_sliders.scss */

.slider-dots.dark-dots a {
  border: 2px solid #000000;
}

/* line 149, resources/assets/styles/components/_sliders.scss */

.slider-dots.dark-dots a:after {
  z-index: 10;
  content: ' ';
  background-color: #ffffff;
}

/* line 157, resources/assets/styles/components/_sliders.scss */

.slider-dots.dark-dots a:hover:after,
.slider-dots.dark-dots a.active:after {
  background-color: #c80205;
}

/* Header Slider */

/* line 168, resources/assets/styles/components/_sliders.scss */

#header-slider .kc_column {
  padding-left: 0;
  padding-right: 0;
}

/* line 174, resources/assets/styles/components/_sliders.scss */

.header-slider-widget {
  width: 100%;
}

/* line 177, resources/assets/styles/components/_sliders.scss */

.header-slider-widget .item {
  width: 100%;
  visibility: hidden;
}

/* line 181, resources/assets/styles/components/_sliders.scss */

.header-slider-widget .item:first-child {
  visibility: visible;
}

/* line 186, resources/assets/styles/components/_sliders.scss */

.header-slider-widget .tns-controls {
  display: none;
}

/* line 191, resources/assets/styles/components/_sliders.scss */

.header-slider-widget .tns-horizontal .item {
  visibility: visible;
}

/* line 194, resources/assets/styles/components/_sliders.scss */

.header-slider-widget .tns-horizontal .item:first-child {
  visibility: visible;
}

/* line 203, resources/assets/styles/components/_sliders.scss */

.slider {
  background-position: center center;
  background-size: cover;
}

/* line 210, resources/assets/styles/components/_sliders.scss */

.slider-image img {
  visibility: hidden;
}

/* line 215, resources/assets/styles/components/_sliders.scss */

.slider-content {
  height: 80vh;
  max-height: 80vh;
  min-height: 800px;
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 1023px) {
  /* line 215, resources/assets/styles/components/_sliders.scss */

  .slider-content {
    height: 55vh;
    max-height: 55vh;
    min-height: 525px;
  }
}

/* line 230, resources/assets/styles/components/_sliders.scss */

.slider-content * {
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

/* line 238, resources/assets/styles/components/_sliders.scss */

.slider-content > .container,
.two-column-carousel .slider-content > .tns-outer {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 245, resources/assets/styles/components/_sliders.scss */

.slider-content > .container > .row,
.two-column-carousel .slider-content > .tns-outer > .row {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100%;
}

/* line 252, resources/assets/styles/components/_sliders.scss */

.slider-content > .container > .row > .col-md-12,
.two-column-carousel .slider-content > .tns-outer > .row > .col-md-12 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 265, resources/assets/styles/components/_sliders.scss */

.slider-details {
  width: 100%;
  z-index: 1;
  max-width: 540px;
  padding: 20px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  background-color: rgba(74, 74, 74, 0.8);
  color: #fff;
  height: auto;
}

/* line 286, resources/assets/styles/components/_sliders.scss */

.slider-details > * {
  max-width: 100%;
}

/* line 290, resources/assets/styles/components/_sliders.scss */

.slider-details h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* line 295, resources/assets/styles/components/_sliders.scss */

.slider-details h3 .icon {
  font-size: 70px;
}

/* line 300, resources/assets/styles/components/_sliders.scss */

.slider-details h3 .text {
  display: block;
  max-width: 400px;
  font-family: "Demos Next W01 Regular", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.31;
  letter-spacing: 0.4px;
  text-align: left;
  padding-left: 40px;
}

@media screen and (max-width: 1023px) {
  /* line 300, resources/assets/styles/components/_sliders.scss */

  .slider-details h3 .text {
    padding-left: 20px;
  }
}

/* line 309, resources/assets/styles/components/_sliders.scss */

.slider-details h3 .text .headline {
  font-family: "Demos Next W01 Medium", serif;
}

/* line 313, resources/assets/styles/components/_sliders.scss */

.slider-details h3 .text .overline {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
  font-weight: normal;
  font-size: 28px;
}

/* line 318, resources/assets/styles/components/_sliders.scss */

.slider-details h3 .text .overline br {
  display: none;
}

/* line 325, resources/assets/styles/components/_sliders.scss */

.slider-details p {
  font-family: "Oxygen", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0;
  display: block;
  height: 0;
  font-size: 0;
  overflow: hidden;
}

/* line 335, resources/assets/styles/components/_sliders.scss */

.slider-details .slide-content {
  display: block;
  height: 0;
  font-size: 0;
  overflow: hidden;
  color: #ffffff;
}

/* line 343, resources/assets/styles/components/_sliders.scss */

.slider-details .slide-content p {
  color: #ffffff;
}

/* line 349, resources/assets/styles/components/_sliders.scss */

.slider-details.opened-slide,
.slider-text-open .slider-details {
  padding: 30px;
  padding-bottom: 50px;
}

/* line 353, resources/assets/styles/components/_sliders.scss */

.slider-details.opened-slide h3,
.slider-text-open .slider-details h3 {
  margin-bottom: 20px;
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 358, resources/assets/styles/components/_sliders.scss */

.slider-details.opened-slide h3 .icon,
.slider-text-open .slider-details h3 .icon {
  margin: 0 0 20px;
  font-size: 70px;
}

@media screen and (max-width: 1023px) {
  /* line 358, resources/assets/styles/components/_sliders.scss */

  .slider-details.opened-slide h3 .icon,
  .slider-text-open .slider-details h3 .icon {
    margin-bottom: 10px;
    font-size: 60px;
  }
}

/* line 367, resources/assets/styles/components/_sliders.scss */

.slider-details.opened-slide h3 span,
.slider-text-open .slider-details h3 span {
  font-family: "Demos Next W01 Cn", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.04;
  text-align: left;
  padding-left: 0;
}

/* line 373, resources/assets/styles/components/_sliders.scss */

.slider-details.opened-slide .opener,
.slider-text-open .slider-details .opener {
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 381, resources/assets/styles/components/_sliders.scss */

.slider-details.opened-slide .slide-content,
.slider-text-open .slider-details .slide-content {
  height: auto;
}

/* line 385, resources/assets/styles/components/_sliders.scss */

.slider-details.opened-slide p,
.slider-text-open .slider-details p {
  margin-bottom: 40px;
  height: auto;
  font-size: 20px;
}

@media screen and (max-width: 1023px) {
  /* line 385, resources/assets/styles/components/_sliders.scss */

  .slider-details.opened-slide p,
  .slider-text-open .slider-details p {
    margin-bottom: 20px;
  }
}

/* line 398, resources/assets/styles/components/_sliders.scss */

.slider-text-open .slider-details {
  padding: 40px !important;
  height: auto;
}

/* Headline, Overline */

/* Open & Close Slider Text*/

/* line 409, resources/assets/styles/components/_sliders.scss */

.slider-controls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

/* line 419, resources/assets/styles/components/_sliders.scss */

.opener {
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
  font-weight: normal;
  text-decoration: none;
  float: right;
  right: 10px;
  position: absolute;
}

/* line 431, resources/assets/styles/components/_sliders.scss */

.opener:hover {
  text-decoration: none;
  color: #ffffff;
}

/* line 438, resources/assets/styles/components/_sliders.scss */

.slider-button {
  color: #ffffff;
  border-color: #ffffff;
}

/* line 442, resources/assets/styles/components/_sliders.scss */

.slider-button:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* POsts Carousel */

/* line 450, resources/assets/styles/components/_sliders.scss */

.slider-image {
  text-align: center;
  width: 50%;
}

/* line 454, resources/assets/styles/components/_sliders.scss */

.slider-image img {
  max-height: 500px;
  width: auto;
}

/* line 460, resources/assets/styles/components/_sliders.scss */

.two-column-carousel {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* line 465, resources/assets/styles/components/_sliders.scss */

.two-column-carousel .tns-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 470, resources/assets/styles/components/_sliders.scss */

.two-column-carousel .tns-outer .tns-controls {
  text-align: center;
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 20;
}

/* line 477, resources/assets/styles/components/_sliders.scss */

.two-column-carousel .tns-outer .tns-controls button {
  line-height: normal;
  padding: 0;
  margin: 0;
  width: 25px;
}

/* line 483, resources/assets/styles/components/_sliders.scss */

.two-column-carousel .tns-outer .tns-controls button i {
  font-size: 30px;
  color: #4a4a4a;
  line-height: 0;
}

/* line 491, resources/assets/styles/components/_sliders.scss */

.two-column-carousel .tns-outer .tns-nav {
  right: 0;
  position: absolute;
  top: 60px;
  padding-left: 40px;
  z-index: 10;
}

@media screen and (max-width: 1440px) {
  /* line 505, resources/assets/styles/components/_sliders.scss */

  .slider-details {
    max-height: 680px;
  }

  /* line 508, resources/assets/styles/components/_sliders.scss */

  .slider-details h3 {
    margin-top: 0 !important;
  }

  /* line 513, resources/assets/styles/components/_sliders.scss */

  .slider-details.opened-slide p,
  .slider-text-open .slider-details p,
  .slider-text-open .slider-details p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1100px) {
  /* line 522, resources/assets/styles/components/_sliders.scss */

  .slider-content {
    height: 80vh;
    max-height: 100vh;
    min-height: 80vh;
    overflow: hidden;
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  /* line 532, resources/assets/styles/components/_sliders.scss */

  .slider-text-open .slider-details {
    width: 100000% !important;
    max-width: 100%;
    display: block !important;
    -ms-flex-wrap: unset !important;
        flex-wrap: unset !important;
  }

  /* line 539, resources/assets/styles/components/_sliders.scss */

  .slider-details h3 .text {
    display: block;
    max-width: 100%;
  }

  /* line 543, resources/assets/styles/components/_sliders.scss */

  .slider-text-open .slider-details p {
    margin-bottom: 20px;
    overflow: hidden;
    max-height: 90px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media screen and (max-width: 989px) {
  /* line 553, resources/assets/styles/components/_sliders.scss */

  .home .slider-brand {
    display: block;
  }

  /* line 556, resources/assets/styles/components/_sliders.scss */

  .home .slider-brand .brand {
    visibility: visible;
  }
}

@media screen and (max-width: 767px) {
  /* line 567, resources/assets/styles/components/_sliders.scss */

  .slider-image {
    display: none;
  }

  /* line 571, resources/assets/styles/components/_sliders.scss */

  .slider-content {
    overflow: hidden;
    min-height: 568px;
    /* iphone 5*/
    height: 100vh;
    padding-top: 0;
  }

  /* line 575, resources/assets/styles/components/_sliders.scss */

  .slider-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 571, resources/assets/styles/components/_sliders.scss */

  .slider-content {
    overflow: visible;
    padding-bottom: 0px;
    min-height: 0;
    height: auto;
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  /* line 595, resources/assets/styles/components/_sliders.scss */

  .slider-content.plain-header {
    min-height: 0;
    padding-bottom: 20px;
  }

  /* line 602, resources/assets/styles/components/_sliders.scss */

  .slider-content > .container > .row > .col-md-12,
  .two-column-carousel .slider-content > .tns-outer > .row > .col-md-12 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 602, resources/assets/styles/components/_sliders.scss */

  .slider-content > .container > .row > .col-md-12,
  .two-column-carousel .slider-content > .tns-outer > .row > .col-md-12 {
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 767px) {
  /* line 614, resources/assets/styles/components/_sliders.scss */

  .slider-brand {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    height: 250px;
  }

  /* line 619, resources/assets/styles/components/_sliders.scss */

  .slider-brand .brand {
    display: block;
    position: relative;
    margin: 0 auto;
    float: none;
    font-size: 17px;
    width: 150px;
  }

  /* line 627, resources/assets/styles/components/_sliders.scss */

  .slider-brand .brand img {
    max-height: 40px;
    width: 75px;
  }

  /* line 634, resources/assets/styles/components/_sliders.scss */

  .slider-details {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0 auto;
    max-width: 480px;
    min-height: auto;
    padding: 20px 20px 30px;
  }

  /* line 641, resources/assets/styles/components/_sliders.scss */

  .slider-details h3 {
    font-size: 32px;
    letter-spacing: 1.1px;
  }
}

@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 641, resources/assets/styles/components/_sliders.scss */

  .slider-details h3 {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) and (max-width: 374px) {
  /* line 641, resources/assets/styles/components/_sliders.scss */

  .slider-details h3 {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  /* line 654, resources/assets/styles/components/_sliders.scss */

  .slider-text-open .slider-details p {
    margin-bottom: 20px;
    overflow: hidden;
    max-height: 90px;
    text-overflow: ellipsis;
    white-space: initial;
  }
}

@media screen and (max-width: 480px) {
  /* line 666, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget {
    width: 100%;
    margin-top: 35px;
  }

  /* line 670, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget .slider.item {
    min-height: calc((var(--vh, 1vh) * 100) - 50px);
  }

  /* line 673, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget .slider.item .slider-content {
    position: absolute;
    bottom: 0;
    height: auto;
  }

  /* line 678, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget .slider.item .slider-content .col-md-12 {
    padding: 0 !important;
  }

  /* line 683, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget .slider.item .slider-details {
    width: 111% !important;
    max-width: 120%;
    padding: 20px 25px;
    left: -11%;
    right: -11%;
    position: absolute;
  }

  /* line 692, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget .slider.item .slider-details h3 span {
    font-size: 34px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    padding: 0;
  }

  /* line 700, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget .slider.item .slider-details h3 span.overline {
    font-size: 20px;
    line-height: 1.4em;
  }

  /* line 706, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget .slider.item .slider-details h3 .icon {
    font-size: 50px;
    margin-right: 10px;
    line-height: 80px;
  }

  /* line 715, resources/assets/styles/components/_sliders.scss */

  .header-slider-widget .slider.item .slider-details.opened-slide h3 span,
  .header-slider-widget .slider.item .slider-text-open .slider-details h3 span,
  .slider-text-open .header-slider-widget .slider.item .slider-details h3 span {
    padding-left: 0 !important;
  }
}

/* line 1, resources/assets/styles/components/_cookies.scss */

.cookie-notice {
  position: fixed;
  bottom: -100%;
  opacity: 0;
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px 0;
  background-color: #000000;
  color: #fff;
  z-index: 99999999;
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  /* line 1, resources/assets/styles/components/_cookies.scss */

  .cookie-notice {
    font-size: 14px;
    line-height: 1.4;
    background-color: rgba(0, 0, 0, 0.9);
  }
}

/* line 26, resources/assets/styles/components/_cookies.scss */

.cookie-notice .col {
  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-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 600px) {
  /* line 26, resources/assets/styles/components/_cookies.scss */

  .cookie-notice .col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 36, resources/assets/styles/components/_cookies.scss */

  .cookie-notice .col .accept-cookies-button {
    margin: 30px 0 15px 0;
    -ms-flex-item-align: center;
        align-self: center;
    padding: 5px 15px;
    width: auto;
    max-width: none;
  }

  /* line 45, resources/assets/styles/components/_cookies.scss */

  .cookie-notice .col .message {
    margin: 10px 10px 0;
  }
}

/* line 54, resources/assets/styles/components/_cookies.scss */

.cookie-notice a:not(.btn):hover {
  color: #c80205;
  opacity: 0.8;
}

/* line 62, resources/assets/styles/components/_cookies.scss */

.accept-cookies-button {
  margin: 0;
  margin-left: 30px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  font-weight: normal;
}

@media screen and (max-width: 600px) {
  /* line 62, resources/assets/styles/components/_cookies.scss */

  .accept-cookies-button {
    font-size: 16px;
  }
}

/* line 76, resources/assets/styles/components/_cookies.scss */

.show-cookie-layer .cookie-notice {
  bottom: 0;
  opacity: 1;
}

/* line 3, resources/assets/styles/components/_nav.scss */

.close-click-menu {
  display: none;
}

/* line 6, resources/assets/styles/components/_nav.scss */

.close-click-menu.active {
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* line 19, resources/assets/styles/components/_nav.scss */

.no-padding {
  padding: 0;
}

/* line 23, resources/assets/styles/components/_nav.scss */

.nav-lvl-1 {
  height: 100%;
  position: relative;
}

/* line 29, resources/assets/styles/components/_nav.scss */

.nav-container,
.secondary-menu,
.nav-primary {
  position: fixed;
  width: 100%;
  background-color: #e1dcbe;
  min-height: 800px;
  top: -100%;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding-top: 96px;
  height: calc(80vh - 96px);
}

@media screen and (max-width: 767px) {
  /* line 29, resources/assets/styles/components/_nav.scss */

  .nav-container,
  .secondary-menu,
  .nav-primary {
    height: auto;
  }
}

/* Sortiment menu */

/* line 49, resources/assets/styles/components/_nav.scss */

.custom-items-menu,
.custom-items-menu ul {
  margin: 0;
  padding: 0;
}

/* line 54, resources/assets/styles/components/_nav.scss */

.custom-items-menu .sub-menu > li:first-child {
  margin-top: 0;
}

/* line 59, resources/assets/styles/components/_nav.scss */

.mobile-nav li .custom-items-menu > li:first-child > a {
  font-weight: bold !important;
  font-size: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* END Sortiment mernu */

/* line 73, resources/assets/styles/components/_nav.scss */

.nav-primary {
  pointer-events: none;
}

/* line 78, resources/assets/styles/components/_nav.scss */

.nav-primary.active {
  top: 0;
  left: 0;
  opacity: 1;
  pointer-events: all;
}

/* line 85, resources/assets/styles/components/_nav.scss */

.nav-primary .help-nav {
  background-color: #009b67;
  padding: 10px;
  margin-bottom: 20px;
  margin-top: 10px;
}

/* line 91, resources/assets/styles/components/_nav.scss */

.nav-primary .help-nav .col {
  border-right: 3px solid #ffffff;
  text-align: center;
}

/* line 95, resources/assets/styles/components/_nav.scss */

.nav-primary .help-nav .col:last-child {
  border: none;
}

/* line 100, resources/assets/styles/components/_nav.scss */

.nav-primary .help-nav a {
  font-family: "Oxygen", sans-serif;
  font-size: 21.2px;
  font-weight: bold;
  line-height: 1.28;
  text-align: left;
  color: #ffffff;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  padding: 3px 0;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 112, resources/assets/styles/components/_nav.scss */

.nav-primary .help-nav .fixed-nav-item .icon {
  font-size: 40px;
  position: relative;
  bottom: 0;
}

@media screen and (min-width: 1024px) {
  /* line 112, resources/assets/styles/components/_nav.scss */

  .nav-primary .help-nav .fixed-nav-item .icon {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  /* line 123, resources/assets/styles/components/_nav.scss */

  .nav-primary .help-nav .fixed-nav-item span {
    display: none;
  }
}

/* line 133, resources/assets/styles/components/_nav.scss */

.nav-lists {
  height: 100%;
  overflow-y: scroll;
  max-height: 572px;
}

/* line 140, resources/assets/styles/components/_nav.scss */

.nav-lists ul {
  padding: 10px 0 20px;
  margin: 0;
  list-style: none;
}

/* line 145, resources/assets/styles/components/_nav.scss */

.nav-lists ul li {
  padding: 0;
  margin: 0;
  font-family: "Oxygen", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: 0.3px;
  text-align: left;
}

/* line 150, resources/assets/styles/components/_nav.scss */

.nav-lists ul li a {
  color: #4a4a4a;
}

/* line 154, resources/assets/styles/components/_nav.scss */

.nav-lists ul li li {
  font-family: "Oxygen", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.76;
  text-align: left;
}

/* line 158, resources/assets/styles/components/_nav.scss */

.nav-lists ul li a.ellip {
  font-size: 30px;
  line-height: 0.6em;
  display: block;
}

/* line 167, resources/assets/styles/components/_nav.scss */

.nav-lists li.contact-item p {
  font-family: "Oxygen",sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.76;
  margin-bottom: 0;
  margin-top: 20px;
}

/* line 175, resources/assets/styles/components/_nav.scss */

.nav-lists li.contact-item .icon {
  font-size: 24px;
  margin-right: 12px;
}

/* line 184, resources/assets/styles/components/_nav.scss */

.secondary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(225, 220, 190, 0.9);
  opacity: 0;
  pointer-events: none;
  padding-left: 50px;
}

@media screen and (max-width: 1023px) {
  /* line 184, resources/assets/styles/components/_nav.scss */

  .secondary-menu {
    padding-left: 0px;
  }
}

/* line 201, resources/assets/styles/components/_nav.scss */

.secondary-menu[data-active-nav="services"] #nav-services {
  opacity: 1;
  pointer-events: all;
}

/* line 207, resources/assets/styles/components/_nav.scss */

.secondary-menu .nav-back {
  background: #c80205;
  color: #ffffff !important;
  height: calc(100% - 126px);
  width: 48px;
  margin-top: 30px;
  padding: 0px 4px;
  font-size: 39px;
  text-align: left;
  cursor: pointer;
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

/* line 225, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col {
  padding: 22px 0 22px 80px;
}

/* line 228, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sub-nav-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Oxygen", sans-serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.4px;
  text-align: left;
  color: #000000;
}

/* line 234, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sub-nav-heading > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
}

/* line 240, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sub-nav-heading > a:hover {
  text-decoration: none;
  color: #c80205;
}

/* line 246, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sub-nav-heading .icon {
  font-size: 70px;
}

/* line 249, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sub-nav-heading .icon:before {
  margin: 0 20px 0 0 !important;
}

/* line 255, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .subheading {
  font-family: "Oxygen", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  text-align: left;
  color: #000000;
}

/* line 258, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .subheading a {
  color: #000000;
}

/* line 261, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .subheading a:hover {
  text-decoration: none;
  color: #c80205;
}

/* line 268, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sec-nav-ul {
  padding: 0;
  margin: 0;
  -webkit-column-count: 2;
  column-count: 2;
  overflow: auto;
  overflow-y: hidden;
  overflow-x: auto;
  max-height: 470px;
}

@media screen and (min-width: 1366px) {
  /* line 268, resources/assets/styles/components/_nav.scss */

  .secondary-menu .left-col .sec-nav-ul {
    -webkit-column-count: 3;
    column-count: 3;
  }
}

/* line 287, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sec-nav-ul .sec-nav-item {
  display: block;
  padding: 0;
  margin: 0;
}

/* line 292, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sec-nav-ul .sec-nav-item a {
  color: #000000;
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 45px;
}

/* line 301, resources/assets/styles/components/_nav.scss */

.secondary-menu .left-col .sec-nav-ul .sec-nav-item a:hover {
  color: #c80205;
}

/* line 309, resources/assets/styles/components/_nav.scss */

.secondary-menu .right-col {
  /* While booking = disabled */
  padding-top: 22px;
}

@media screen and (min-width: 990px) {
  /* line 309, resources/assets/styles/components/_nav.scss */

  .secondary-menu .right-col {
    padding-top: 110px;
  }
}

/* line 318, resources/assets/styles/components/_nav.scss */

.secondary-menu .right-col .nav-booking-button {
  display: block;
  background: #4a4a4a;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
  padding: 20px 20px 20px 70px;
}

/* line 334, resources/assets/styles/components/_nav.scss */

.secondary-menu .right-col .nav-booking-button .icon {
  font-size: 36px;
  position: absolute;
  top: 4px;
  margin: auto;
  bottom: 0;
  left: 10px;
  height: 36px;
  width: 36px;
  line-height: 0;
}

/* line 347, resources/assets/styles/components/_nav.scss */

.secondary-menu .right-col .featured-service-thumbnail {
  border: 1px solid #c80205;
  background: #c80205;
  display: block;
  margin-bottom: 20px;
}

/* line 354, resources/assets/styles/components/_nav.scss */

.secondary-menu .right-col h4 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 26px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.35;
  letter-spacing: normal;
  text-align: left;
  color: #c80205;
}

/* line 367, resources/assets/styles/components/_nav.scss */

.secondary-menu li.sec-nav-item a:hover,
.secondary-menu .subheading a:hover {
  color: #c80205;
}

/* line 373, resources/assets/styles/components/_nav.scss */

.secondary-nav-content {
  opacity: 0;
  pointer-events: none;
}

/* line 380, resources/assets/styles/components/_nav.scss */

.show-next-level-nav .nav-primary.active {
  opacity: 0;
}

/* line 384, resources/assets/styles/components/_nav.scss */

.show-next-level-nav .secondary-menu {
  opacity: 1;
  pointer-events: all;
}

/* line 389, resources/assets/styles/components/_nav.scss */

.show-next-level-nav .nav-lvl-1 {
  opacity: 0;
  pointer-events: none;
}

/* line 396, resources/assets/styles/components/_nav.scss */

.service-of-the-month .service-name {
  color: #000000;
}

/* line 403, resources/assets/styles/components/_nav.scss */

.mobile-nav {
  display: none;
}

/* line 408, resources/assets/styles/components/_nav.scss */

.show-next-level-nav .nav-back {
  pointer-events: all;
}

@media screen and (max-width: 1365px) {
  /* line 416, resources/assets/styles/components/_nav.scss */

  .nav-map-image {
    margin-bottom: 40px;
  }

  /* line 419, resources/assets/styles/components/_nav.scss */

  .nav-lists {
    height: 100%;
    overflow-y: scroll;
    max-height: 522px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 429, resources/assets/styles/components/_nav.scss */

  header.header.affix .nav-wrap {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 440, resources/assets/styles/components/_nav.scss */

  header.header.affix .nav-wrap {
    margin-top: 0px;
  }

  /* line 445, resources/assets/styles/components/_nav.scss */

  .nav-primary .container.nav-lists,
  .nav-primary .two-column-carousel .nav-lists.tns-outer,
  .two-column-carousel .nav-primary .nav-lists.tns-outer {
    height: 600px;
    overflow: scroll;
  }

  /* line 451, resources/assets/styles/components/_nav.scss */

  .nav-primary .help-nav .fixed-nav-item {
    padding: 6px 0 6px 0;
    font-size: 16px;
  }

  /* line 455, resources/assets/styles/components/_nav.scss */

  .nav-primary .help-nav .fixed-nav-item i.icon {
    top: 0;
    font-size: 28px;
  }

  /* line 462, resources/assets/styles/components/_nav.scss */

  .help-nav {
    min-height: 70px;
  }

  /* line 465, resources/assets/styles/components/_nav.scss */

  .help-nav .col.p-0 {
    min-height: 50px;
  }

  /* line 469, resources/assets/styles/components/_nav.scss */

  .help-nav .fixed-nav-item {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  /* line 477, resources/assets/styles/components/_nav.scss */

  .secondary-menu .nav-back {
    left: -100%;
  }

  /* line 480, resources/assets/styles/components/_nav.scss */

  .show-next-level-nav .nav-primary.active .nav-back {
    left: 0%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 487, resources/assets/styles/components/_nav.scss */

  .nav-list-3 {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  /* line 494, resources/assets/styles/components/_nav.scss */

  .secondary-menu {
    display: none;
  }

  /* line 499, resources/assets/styles/components/_nav.scss */

  .header .nav-wrap {
    margin-top: 0px;
  }

  /* line 503, resources/assets/styles/components/_nav.scss */

  .header .nav-primary {
    background-color: #e1dcbe;
    padding-top: 94px;
    top: 0;
    left: -100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }

  /* line 511, resources/assets/styles/components/_nav.scss */

  .header .nav-primary.active {
    top: 0;
    left: 0;
  }

  /* line 516, resources/assets/styles/components/_nav.scss */

  .header .nav-primary .help-nav {
    background-color: #5a5a5a;
    margin-bottom: 0;
    padding: 10px 25px;
  }

  /* line 521, resources/assets/styles/components/_nav.scss */

  .header .nav-primary .help-nav .col.p-0 {
    border-right: 0;
    border-left: 2px solid #ffffff;
  }

  /* line 525, resources/assets/styles/components/_nav.scss */

  .header .nav-primary .help-nav .col.p-0:last-child {
    border: none !important;
    border-right: 2px solid #ffffff !important;
    border-left: 2px solid #ffffff !important;
  }

  /* line 531, resources/assets/styles/components/_nav.scss */

  .header .nav-primary .help-nav .col.p-0 .fixed-nav-item {
    padding: 5px !important;
  }

  /* line 534, resources/assets/styles/components/_nav.scss */

  .header .nav-primary .help-nav .col.p-0 .fixed-nav-item:hover {
    background: #009b67;
  }

  /* line 538, resources/assets/styles/components/_nav.scss */

  .header .nav-primary .help-nav .col.p-0 .fixed-nav-item span {
    display: none;
  }

  /* line 542, resources/assets/styles/components/_nav.scss */

  .header .nav-primary .help-nav .col.p-0 .fixed-nav-item i.icon {
    font-size: 40px;
    margin: auto 0;
    top: 0;
    left: 0;
    display: contents;
  }

  /* line 556, resources/assets/styles/components/_nav.scss */

  .nav-lists {
    display: none;
  }

  /* line 560, resources/assets/styles/components/_nav.scss */

  .mobile-nav {
    display: block;
    padding: 10px 30px 80px;
    height: 80vh;
    overflow-y: scroll;
  }

  /* line 568, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.dropdown-service.active span {
    color: #c80205;
  }

  /* line 571, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.dropdown-service.active span i {
    -webkit-transform: rotate(180deg) !important;
         -o-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }

  /* line 578, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.dropdown-ratgeber.active span {
    color: #c80205;
  }

  /* line 581, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.dropdown-ratgeber.active span i {
    -webkit-transform: rotate(180deg) !important;
         -o-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }

  /* line 587, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap,
  .mobile-nav ul.nav-wrap * {
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
  }

  /* line 595, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li {
    list-style: none;
  }

  /* line 598, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li > a,
  .mobile-nav ul.nav-wrap li > span,
  .mobile-nav ul.nav-wrap li .custom-items-menu li:first-child {
    font-family: "Oxygen", sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #5a5a5a;
    margin: 20px 0 0;
    display: block;
  }

  /* line 610, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li > a span,
  .mobile-nav ul.nav-wrap li > span span,
  .mobile-nav ul.nav-wrap li .custom-items-menu li:first-child span {
    font-size: 16px;
    margin-left: 20px;
    font-weight: 100;
  }

  /* line 616, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li > a i,
  .mobile-nav ul.nav-wrap li > span i,
  .mobile-nav ul.nav-wrap li .custom-items-menu li:first-child i {
    float: right;
    font-size: 32px;
    font-weight: 900;
    line-height: 0;
    margin-top: -5px;
  }

  /* line 624, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li > a:focus,
  .mobile-nav ul.nav-wrap li > a:active,
  .mobile-nav ul.nav-wrap li > a:hover,
  .mobile-nav ul.nav-wrap li > span:focus,
  .mobile-nav ul.nav-wrap li > span:active,
  .mobile-nav ul.nav-wrap li > span:hover,
  .mobile-nav ul.nav-wrap li .custom-items-menu li:first-child:focus,
  .mobile-nav ul.nav-wrap li .custom-items-menu li:first-child:active,
  .mobile-nav ul.nav-wrap li .custom-items-menu li:first-child:hover {
    color: #c80205;
  }

  /* line 629, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li .custom-items-menu li:first-child {
    margin-top: 0;
  }

  /* line 633, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li > ul {
    margin: 0;
    padding: 0;
  }

  /* line 638, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li > ul li > a {
    padding-left: 0;
  }

  /* line 641, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li > ul li > a span {
    margin-left: 0;
  }

  /* line 645, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li > ul li > a i {
    float: none;
    margin: 0 10px 0px 0;
  }

  /* line 654, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.contact-item li > a {
    margin-top: 10px;
  }

  /* line 660, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.expandable-li ul {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: #fff;
  }

  /* line 667, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.expandable-li ul li {
    height: 0;
  }

  /* line 670, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.expandable-li ul li > a {
    height: 0;
    padding: 6px 10px;
  }

  /* line 680, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li.expandable-li.active li,
  .mobile-nav ul.nav-wrap li.expandable-li.active a,
  .mobile-nav ul.nav-wrap li.expandable-li > .active li,
  .mobile-nav ul.nav-wrap li.expandable-li > .active a {
    height: auto;
  }

  /* line 689, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li ul li > a {
    padding: 0px;
    margin: 0;
    font-family: "Oxygen", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #5a5a5a;
  }

  /* line 704, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li ul.active {
    opacity: 1;
    margin-top: 10px;
    max-height: 3000px;
  }

  /* line 709, resources/assets/styles/components/_nav.scss */

  .mobile-nav ul.nav-wrap li ul.active li,
  .mobile-nav ul.nav-wrap li ul.active a {
    height: auto;
  }

  /* line 718, resources/assets/styles/components/_nav.scss */

  .mobile-nav .map {
    height: 220px;
    width: 100%;
    margin: auto;
    border: 2px solid #fff;
  }

  /* line 725, resources/assets/styles/components/_nav.scss */

  .mobile-nav .map:hover:before {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }

  /* line 735, resources/assets/styles/components/_nav.scss */

  .mobile-nav .map a {
    color: #fff;
    position: absolute;
    width: 100%;
    opacity: 0.8;
    font-family: "Oxygen", sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    bottom: 30px;
    text-align: center;
    height: calc(100% - 40px);
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 0px;
    min-height: 240px !important;
    z-index: 500;
  }

  /* line 760, resources/assets/styles/components/_nav.scss */

  .mobile-nav .map a:hover,
  .mobile-nav .map a:active {
    color: #ffffff;
  }

  /* line 766, resources/assets/styles/components/_nav.scss */

  .mobile-nav .map .icon {
    font-size: 0;
    line-height: 200px;
    opacity: 0.8;
  }

  /* line 771, resources/assets/styles/components/_nav.scss */

  .mobile-nav .map .icon:before {
    font-size: 100px;
    line-height: 200px;
  }

  /* line 778, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly {
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    margin: 10px 0 0;
  }

  /* line 786, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly h6 {
    font-family: "Demos Next W01 Regular", serif;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-align: left;
    margin: 0;
  }

  /* line 798, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly p {
    font-family: "Oxygen", sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #4a4a4a;
  }

  /* line 809, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly p a {
    margin: 0;
  }

  /* line 815, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly.service h6 {
    color: #c80205;
  }

  /* line 819, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly.service .image-wrap {
    border: 2px solid #c80205;
  }

  /* line 825, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly.ratgeber h6 {
    color: #009b67;
  }

  /* line 829, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly.ratgeber .image-wrap {
    border: 2px solid #009b67;
  }

  /* line 836, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly .image-wrap {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
  }

  /* line 843, resources/assets/styles/components/_nav.scss */

  .mobile-nav .monthly .image-wrap img {
    width: 100%;
    height: auto;
  }

  /* line 853, resources/assets/styles/components/_nav.scss */

  .mobile-nav .booking-link {
    padding: 2px 30px 2px 12px;
    position: absolute;
    right: 0;
    background: #5a5a5a;
    font-size: 37px;
    color: #ffffff;
    top: 170px;
  }

  /* line 862, resources/assets/styles/components/_nav.scss */

  .mobile-nav .booking-link .icon {
    font-size: 37px;
  }
}

@media screen and (max-width: 599px) {
  /* line 872, resources/assets/styles/components/_nav.scss */

  .header .nav-primary {
    padding-top: 50px;
  }
}

@media screen and (max-width: 375px) {
  /* line 878, resources/assets/styles/components/_nav.scss */

  .fixed-nav-item i.icon:before {
    line-height: 38px;
    font-size: 30px;
  }
}

/*NEW backend Navs*/

/* line 885, resources/assets/styles/components/_nav.scss */

.backend-nav {
  padding: 0 0 20px !important;
}

/* line 2, resources/assets/styles/components/_affix.scss */

.affix nav.nav-primary.active {
  padding-top: 60px;
}

/* line 6, resources/assets/styles/components/_affix.scss */

.affix .slogan {
  margin-top: -70px;
  margin-bottom: 0 !important;
}

/* line 11, resources/assets/styles/components/_affix.scss */

.affix .main-logo {
  display: none;
}

/* line 15, resources/assets/styles/components/_affix.scss */

.affix .help-nav {
  margin-top: 0;
}

/* line 19, resources/assets/styles/components/_affix.scss */

.affix .pb-1,
.affix .py-1 {
  padding: 0 !important;
}

/* line 20, resources/assets/styles/components/_affix.scss */

.affix button,
.affix .brand-wrap {
  margin: 0 !important;
}

/* line 1, resources/assets/styles/components/_welcome.scss */

.welcome-filter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  background: #e1dcbe;
  padding: 0;
  text-align: center;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 100;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  top: -200%;
  left: 0;
  opacity: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 9999;
}

/* line 19, resources/assets/styles/components/_welcome.scss */

.welcome-filter .wht-bg {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

/* line 28, resources/assets/styles/components/_welcome.scss */

.welcome-filter .wht-bg img {
  width: 340px;
  height: 100% !important;
  max-height: none;
  min-height: 1px;
  display: block;
  margin: auto;
}

/* line 41, resources/assets/styles/components/_welcome.scss */

.welcome-filter .wht-bg .icon-close {
  font-size: 40px;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg) !important;
  display: block;
  font-weight: 100;
  position: absolute;
  right: 40px;
  top: 30px;
  color: #000000;
  text-decoration: none;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif !important;
  font-style: normal;
}

/* line 60, resources/assets/styles/components/_welcome.scss */

.welcome-filter .wht-bg .icon-close:hover {
  text-decoration: none;
}

/* line 66, resources/assets/styles/components/_welcome.scss */

.welcome-filter .welcome-title {
  padding: 40px 0 30px;
}

@media screen and (max-height: 768px) {
  /* line 66, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title {
    padding: 4vh 0;
  }
}

/* line 73, resources/assets/styles/components/_welcome.scss */

.welcome-filter h2 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  color: #c80205;
  display: block;
  width: 100%;
}

@media screen and (max-height: 768px) {
  /* line 73, resources/assets/styles/components/_welcome.scss */

  .welcome-filter h2 {
    font-size: 5vh;
  }
}

/* line 88, resources/assets/styles/components/_welcome.scss */

.welcome-filter p {
  display: block;
  width: 100%;
  font-size: 20px;
}

@media screen and (max-height: 768px) {
  /* line 88, resources/assets/styles/components/_welcome.scss */

  .welcome-filter p {
    font-size: 3vh;
  }
}

/* line 97, resources/assets/styles/components/_welcome.scss */

.welcome-filter .pathway-selector {
  color: #000000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-size: 20px;
  display: block;
  padding: 20px;
  min-height: 560px;
  text-decoration: none;
}

/* line 106, resources/assets/styles/components/_welcome.scss */

.welcome-filter .pathway-selector .icon {
  font-size: 100px;
  display: block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-height: 768px) {
  /* line 106, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector .icon {
    font-size: 10vh;
  }
}

@media screen {
  /* line 115, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector:hover {
    background: rgba(242, 163, 15, 0.5);
    font-size: 27px;
    font-weight: 700;
  }

  /* line 124, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector:hover .icon {
    font-size: 120px;
  }
}

@media screen and (max-height: 768px) {
  /* line 124, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector:hover .icon {
    font-size: 12vh;
  }
}

/* line 139, resources/assets/styles/components/_welcome.scss */

.show-welcome-filter {
  /* Prevent Scrolling */
  overflow: hidden;
}

/* line 143, resources/assets/styles/components/_welcome.scss */

.show-welcome-filter .welcome-filter {
  top: 0;
  left: 0;
  opacity: 1;
}

@media screen and (max-width: 1365px) {
  /* line 162, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector:hover {
    background: rgba(242, 163, 15, 0.5);
    font-size: 22px;
  }

  /* line 166, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .wht-bg {
    max-height: 150px;
    padding: 0 !important;
  }

  /* line 169, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .wht-bg img {
    width: 30%;
    padding: 25px;
    margin: 0 auto;
    min-height: 10px;
    max-width: 320px;
    height: 100% !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 185, resources/assets/styles/components/_welcome.scss */

  .welcome-filter {
    opacity: 1;
    overflow-y: auto;
    max-height: 100vh;
    display: block;
    overflow-x: hidden;
  }

  /* line 193, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector {
    min-height: 0;
  }

  /* line 197, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .wht-bg {
    background-color: #ffffff;
    padding: 30px 0;
    text-align: center;
    top: 0;
    position: relative;
  }

  /* line 212, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector:hover {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  /* line 222, resources/assets/styles/components/_welcome.scss */

  .welcome-filter {
    left: -100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 80px;
  }

  /* line 227, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .wht-bg {
    background-color: #ffffff;
    padding: 0px 0;
    text-align: center;
    position: absolute;
    max-height: 100px;
  }

  /* line 233, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .wht-bg img {
    width: 50%;
    padding: 20px;
    margin: 0 auto;
    min-height: 10px;
    max-width: 300px;
    height: 100% !important;
  }

  /* line 242, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .wht-bg .icon-close {
    right: 30px;
    top: 18px;
  }

  /* line 248, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title {
    padding: 10px 20px 0;
  }

  /* line 251, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title h2 {
    font-family: "Demos Next W01 Regular", serif;
    font-size: 33px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.12;
    margin: 10px 0 20px;
  }

  /* line 261, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title p {
    font-size: 20px;
    line-height: 1.2;
  }

  /* line 268, resources/assets/styles/components/_welcome.scss */

  .welcome-filter a {
    min-height: auto;
    padding: 10px;
  }

  /* line 273, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .mobi-wrap {
    padding: 0 30px;
  }

  /* line 276, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .mobi-wrap a.pathway-selector {
    padding: 60px 0px 0;
  }

  /* line 279, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .mobi-wrap a.pathway-selector i {
    font-size: 64px;
  }

  /* line 286, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .wht-bg .icon-close {
    right: 15px;
    top: 15px;
  }

  /* line 293, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .mobi-wrap a.pathway-selector {
    position: relative;
  }

  /* line 296, resources/assets/styles/components/_welcome.scss */

  div#w-Apotheken {
    margin-top: 0 !important;
  }

  /* line 299, resources/assets/styles/components/_welcome.scss */

  .pathway-selector[data-pathway-name=Krakheit] {
    margin-top: 0px !important;
  }

  /* line 302, resources/assets/styles/components/_welcome.scss */

  .pathway-selector[data-pathway-name=Aktionen] {
    margin-top: 0px !important;
  }

  /* line 305, resources/assets/styles/components/_welcome.scss */

  .pathway-selector[data-pathway-name=Apotheken] {
    margin-top: 0px !important;
  }

  /* line 308, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title h2 {
    font-family: "Demos Next W01 Bold", serif;
    font-size: 33px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  /* line 318, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title p {
    font-size: 20px;
    line-height: 1.2;
    color: #000;
  }
}

@media screen and (max-width: 480px) {
  /* line 328, resources/assets/styles/components/_welcome.scss */

  div#w-Apotheken {
    margin-top: 0 !important;
  }

  /* line 331, resources/assets/styles/components/_welcome.scss */

  .pathway-selector[data-pathway-name=Krakheit] {
    margin-top: 0px !important;
  }

  /* line 334, resources/assets/styles/components/_welcome.scss */

  .pathway-selector[data-pathway-name=Aktionen] {
    margin-top: 0px !important;
  }

  /* line 337, resources/assets/styles/components/_welcome.scss */

  .pathway-selector[data-pathway-name=Apotheken] {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 376px) {
  /* line 343, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title {
    padding: 0px 10px;
  }

  /* line 346, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title h2 {
    font-size: 28px;
  }

  /* line 350, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .welcome-title p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  /* line 356, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .mobi-wrap a.pathway-selector i {
    font-size: 58px;
  }

  /* line 360, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector {
    font-size: 16px;
  }

  /* line 364, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .mobi-wrap a.pathway-selector {
    padding: 30px 0px 0 !important;
  }

  /* line 369, resources/assets/styles/components/_welcome.scss */

  .welcome-filter .pathway-selector:hover {
    background: transparent;
  }

  /* line 372, resources/assets/styles/components/_welcome.scss */

  div#w-Apotheken {
    margin-top: 0 !important;
  }

  /* line 375, resources/assets/styles/components/_welcome.scss */

  a.pathway-selector:hover:before {
    content: "";
    display: block;
    height: 100%;
    width: calc(100% + 40px);
    background: rgba(242, 163, 15, 0.5);
    position: absolute;
    z-index: -1;
    right: -30px;
  }

  /* line 385, resources/assets/styles/components/_welcome.scss */

  .mobi-child a.pathway-selector:hover:before {
    content: "";
    width: calc(100% + 54px);
    left: -30px;
  }
}

/* line 1, resources/assets/styles/components/_tags.scss */

.tag {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 14px;
  line-height: 1.36;
  text-align: center;
  display: inline-block;
  color: #ffffff !important;
  background-color: #c80205;
  padding: 5px 15px;
  margin-right: 20px;
  margin-bottom: 15px;
}

/* line 12, resources/assets/styles/components/_tags.scss */

.tag:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(200, 2, 5, 0.8);
}

@media screen and (max-width: 767px) {
  /* line 1, resources/assets/styles/components/_tags.scss */

  .tag {
    margin-bottom: 10px;
  }
}

/* line 22, resources/assets/styles/components/_tags.scss */

.tag.empty {
  background-color: transparent;
}

/* line 24, resources/assets/styles/components/_tags.scss */

.tag.empty:hover {
  background-color: transparent;
}

/* line 31, resources/assets/styles/components/_tags.scss */

.tags br,
.item-detail .tags br {
  display: none;
}

/* line 35, resources/assets/styles/components/_tags.scss */

.tags a,
.tags .tag,
.item-detail .tags a,
.item-detail .tags .tag {
  color: #ffffff;
}

/* line 2, resources/assets/styles/components/_search.scss */

.search-text-field {
  padding: 4px 10px;
  border: 2px solid #000000;
  width: 100%;
}

@media screen and (max-width: 989px) {
  /* line 2, resources/assets/styles/components/_search.scss */

  .search-text-field {
    max-width: 290px;
    margin: 0 auto 40px;
    display: block;
  }
}

/* line 15, resources/assets/styles/components/_search.scss */

.show-search .search-wrap {
  right: 0;
  opacity: 1;
}

/* line 19, resources/assets/styles/components/_search.scss */

.show-search .search-wrap * {
  pointer-events: all;
}

/* line 25, resources/assets/styles/components/_search.scss */

.search-wrap {
  pointer-events: none;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  background-color: rgba(207, 45, 74, 0.9);
  padding: 110px 110px 90px;
  position: fixed;
  right: -350px;
  opacity: 0;
  z-index: 999;
  height: 100%;
  width: 100%;
  color: #ffffff;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  /* line 25, resources/assets/styles/components/_search.scss */

  .search-wrap {
    max-width: 768px;
  }
}

/* line 51, resources/assets/styles/components/_search.scss */

.search-wrap h6 {
  margin: 0 0 15px;
  padding: 0;
  font-family: "Demos Next W01 Regular", serif;
  font-size: 64px;
  font-weight: bold;
  line-height: 1.33;
  text-align: left;
}

/* line 57, resources/assets/styles/components/_search.scss */

.search-wrap button {
  background: transparent;
  border: none;
  width: 18% !important;
  height: 80px !important;
  text-align: left;
  margin-bottom: 60px !important;
  margin-right: 50px;
}

/* line 66, resources/assets/styles/components/_search.scss */

.search-wrap button .icon {
  color: #ffffff;
  font-size: 56px;
}

/* line 72, resources/assets/styles/components/_search.scss */

.search-wrap input {
  width: 98%;
  padding: 5px;
  border: none;
  margin-top: 25px;
  float: right;
}

/* line 80, resources/assets/styles/components/_search.scss */

.search-wrap .close-search {
  position: absolute;
  right: 0;
  top: 20px;
  line-height: 0;
  text-align: right;
  width: 30px;
  height: 30px;
}

/* line 89, resources/assets/styles/components/_search.scss */

.search-wrap .close-search span {
  position: absolute;
  top: 10px;
  display: block;
  height: 4px;
  background-color: #ffffff;
  width: 34px;
  border-radius: 3px;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* line 99, resources/assets/styles/components/_search.scss */

.search-wrap .close-search span:last-child {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* line 105, resources/assets/styles/components/_search.scss */

.search-wrap a.btn.dark {
  margin-right: 50px;
}

/* line 112, resources/assets/styles/components/_search.scss */

.submit-search-btn {
  cursor: pointer;
}

/* line 117, resources/assets/styles/components/_search.scss */

.search-results .kc_column > .kc-col-container,
.search-results .kc_column_inner > .kc-col-inner-container {
  height: auto;
}

/* line 122, resources/assets/styles/components/_search.scss */

.search-results a.btn {
  margin-top: 15px;
  margin-bottom: 30px;
}

/* line 128, resources/assets/styles/components/_search.scss */

.search-field-container {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 60px;
}

/* line 136, resources/assets/styles/components/_search.scss */

.search-field-container .icon {
  font-size: 70px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  line-height: normal;
  margin-top: -13px;
}

/* line 144, resources/assets/styles/components/_search.scss */

.search-field-container input[type="text"],
.search-field-container input[type="search"] {
  width: 100%;
  max-width: 390px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 13px;
}

@media screen and (min-width: 1366px) and (max-width: 1440px) {
  /* line 157, resources/assets/styles/components/_search.scss */

  .search-wrap .close {
    right: 10px;
    top: 40px;
  }

  /* line 163, resources/assets/styles/components/_search.scss */

  .search-wrap a.btn.dark {
    margin-right: 40px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 173, resources/assets/styles/components/_search.scss */

  .search-wrap {
    max-width: 100%;
    padding: 80px;
  }
}

@media screen and (max-width: 480px) {
  /* line 187, resources/assets/styles/components/_search.scss */

  .search-wrap {
    max-width: 100%;
    padding: 40px;
    background: #cf2d4a;
  }

  /* line 192, resources/assets/styles/components/_search.scss */

  .search-wrap .col-12 {
    display: block !important;
  }

  /* line 195, resources/assets/styles/components/_search.scss */

  .search-wrap .col-12 a.btn {
    width: 100% !important;
    max-width: 100%;
    display: block;
    margin: 10px 0 15px;
    padding: 10px;
  }

  /* line 204, resources/assets/styles/components/_search.scss */

  .search-wrap .search-field-container {
    margin: 0;
  }

  /* line 207, resources/assets/styles/components/_search.scss */

  .search-wrap .search-field-container .icon {
    font-size: 50px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    line-height: normal;
    margin-top: -5px;
    margin-bottom: 13px;
    margin-right: 16px;
  }

  /* line 219, resources/assets/styles/components/_search.scss */

  .search-wrap .close-search {
    position: absolute;
    right: 10px;
    top: 38px;
  }
}

/* line 227, resources/assets/styles/components/_search.scss */

#search_results_container {
  padding-bottom: 40px;
  min-height: 200px;
}

/* line 233, resources/assets/styles/components/_search.scss */

.search-container article,
#search_results_container article {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

/* line 240, resources/assets/styles/components/_search.scss */

.search-filter {
  margin: 0 auto;
}

/* line 244, resources/assets/styles/components/_search.scss */

.search-results-container {
  max-width: 940px;
}

/* line 2, resources/assets/styles/components/_modals.scss */

form .form-fields,
form .form-thank-you {
  height: 0;
  overflow: hidden;
  padding: 0;
}

/* line 10, resources/assets/styles/components/_modals.scss */

form .form-fields {
  height: auto;
}

/* line 15, resources/assets/styles/components/_modals.scss */

form.submitted-form .form-fields {
  height: 0;
  overflow: hidden;
  display: block;
}

/* line 21, resources/assets/styles/components/_modals.scss */

form.submitted-form .form-thank-you {
  height: auto;
}

/* line 27, resources/assets/styles/components/_modals.scss */

.modal-container {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  /* Internet Explorer fix */
}

/* line 48, resources/assets/styles/components/_modals.scss */

.modal-container a.close-modal {
  color: #c80205;
  font-size: 60px;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 30px;
  right: 0px;
  text-decoration: none !important;
}

/* line 60, resources/assets/styles/components/_modals.scss */

.modal-container a.close-modal span {
  pointer-events: none;
  position: absolute;
  top: 10px;
  display: block;
  height: 4px;
  background-color: #c80205;
  width: 34px;
  border-radius: 3px;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 73, resources/assets/styles/components/_modals.scss */

.modal-container a.close-modal span:last-child {
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 480px) {
  /* line 48, resources/assets/styles/components/_modals.scss */

  .modal-container a.close-modal {
    right: 0;
  }
}

/* line 85, resources/assets/styles/components/_modals.scss */

.modal-container input[type="submit"] {
  background: transparent;
  color: #c80205;
  border-color: #c80205;
  margin-right: 40px;
}

/* line 92, resources/assets/styles/components/_modals.scss */

.modal-container input[type="reset"] {
  background: transparent;
}

/* line 97, resources/assets/styles/components/_modals.scss */

.modal-container form label {
  font-size: 20px;
  margin-bottom: 2vh;
  width: 100%;
  display: block;
}

/* line 103, resources/assets/styles/components/_modals.scss */

.modal-container form label.boss--error {
  color: #c80205;
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  /* line 103, resources/assets/styles/components/_modals.scss */

  .modal-container form label.boss--error {
    font-size: 16px;
  }
}

/* line 119, resources/assets/styles/components/_modals.scss */

.modal-container .container,
.modal-container .two-column-carousel .tns-outer,
.two-column-carousel .modal-container .tns-outer {
  max-width: 900px;
  margin: 0;
}

@media screen and (max-width: 1199px) {
  /* line 125, resources/assets/styles/components/_modals.scss */

  .modal-container > .container,
  .two-column-carousel .modal-container > .tns-outer {
    height: 100%;
  }
}

/* Competition Modal */

/* line 134, resources/assets/styles/components/_modals.scss */

.modal-competition {
  background-color: #ebebeb;
}

/* line 137, resources/assets/styles/components/_modals.scss */

.modal-competition .heading {
  margin-bottom: 40px;
  color: #4a4a4a;
}

/* line 141, resources/assets/styles/components/_modals.scss */

.modal-competition .heading h2 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  color: #c80205;
  margin-bottom: 10px;
}

/* line 147, resources/assets/styles/components/_modals.scss */

.modal-competition .heading h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 1px;
}

/* line 153, resources/assets/styles/components/_modals.scss */

.modal-competition .heading h3 strong {
  color: #c80205;
}

/* line 161, resources/assets/styles/components/_modals.scss */

.modal-competition form .checkboxes label {
  font-size: 16px;
}

/* line 167, resources/assets/styles/components/_modals.scss */

.modal-competition .apotheke-filter {
  margin-bottom: 0;
}

/* line 170, resources/assets/styles/components/_modals.scss */

.modal-competition .apotheke-filter label {
  margin-bottom: 5px;
}

/* line 174, resources/assets/styles/components/_modals.scss */

.modal-competition .apotheke-filter .filter {
  max-width: 100%;
}

/* line 178, resources/assets/styles/components/_modals.scss */

.modal-competition .apotheke-filter .drop-down-container {
  margin-bottom: 5px;
  max-width: 360px;
}

/* line 186, resources/assets/styles/components/_modals.scss */

form label.last-checkbox {
  margin-top: 38px;
}

/* line 190, resources/assets/styles/components/_modals.scss */

form .checkboxes {
  margin-bottom: 42px;
  margin-top: 20px;
}

/* line 194, resources/assets/styles/components/_modals.scss */

form .checkboxes label {
  width: 49%;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  line-height: 14px;
}

/* line 201, resources/assets/styles/components/_modals.scss */

form .checkboxes label input:checked ~ .symbol:after {
  display: block;
}

/* line 205, resources/assets/styles/components/_modals.scss */

form .checkboxes label span {
  padding-bottom: 5px;
  display: block;
}

/* line 210, resources/assets/styles/components/_modals.scss */

form .checkboxes label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* line 217, resources/assets/styles/components/_modals.scss */

form .checkboxes label input[type="checkbox"]:checked + i.symbol {
  border: 2px solid #c80205;
}

/* line 222, resources/assets/styles/components/_modals.scss */

form .checkboxes label i.symbol {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border: 2px solid #4a4a4a;
}

/* line 230, resources/assets/styles/components/_modals.scss */

form .checkboxes label i.symbol:after {
  content: "+";
  position: absolute;
  display: none;
  top: -10px;
  left: 0px;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  line-height: 45%;
  font-style: normal;
  color: #c80205;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  font-size: 32px;
}

/* NEWSLETTER MODAL  FORM*/

/* line 257, resources/assets/styles/components/_modals.scss */

.modal-newsletter {
  background-color: #e1dcbe;
}

/* line 260, resources/assets/styles/components/_modals.scss */

.modal-newsletter a.close-btn {
  color: #ffffff;
}

/* line 266, resources/assets/styles/components/_modals.scss */

.modal-newsletter form .heading h2 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  color: #c80205;
  padding: 0;
  margin: 0;
}

/* line 277, resources/assets/styles/components/_modals.scss */

.modal-newsletter form .heading h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.4px;
  text-align: left;
  color: #4a4a4a;
  margin-bottom: 26px;
}

/* line 290, resources/assets/styles/components/_modals.scss */

.modal-newsletter form .contact-details label {
  display: block;
  width: 100%;
}

/* line 294, resources/assets/styles/components/_modals.scss */

.modal-newsletter form .contact-details label input {
  border-color: #4a4a4a;
}

/* line 298, resources/assets/styles/components/_modals.scss */

.modal-newsletter form .contact-details label input[width='100%'] {
  width: 100%;
}

/* line 302, resources/assets/styles/components/_modals.scss */

.modal-newsletter form .contact-details label input:focus {
  border-color: #c80205;
}

/* FRAGEN MODAL FORM */

/* line 315, resources/assets/styles/components/_modals.scss */

.modal-fragen {
  background-color: #fcf5f9;
}

/* line 318, resources/assets/styles/components/_modals.scss */

.modal-fragen h1 {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 120px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #c80205;
  margin: 2vh 0;
}

/* line 334, resources/assets/styles/components/_modals.scss */

.modal-fragen form {
  width: 100%;
}

/* line 340, resources/assets/styles/components/_modals.scss */

.modal-fragen form label span {
  color: #c80205;
  padding-bottom: 5px;
  display: block;
}

/* line 346, resources/assets/styles/components/_modals.scss */

.modal-fragen form label input,
.modal-fragen form label textarea {
  border-color: #4a4a4a;
  width: 100%;
}

/* line 351, resources/assets/styles/components/_modals.scss */

.modal-fragen form label input:focus,
.modal-fragen form label textarea:focus {
  border-color: #c80205;
}

/* line 362, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte {
  background-color: #f5b2ae;
}

/* line 365, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte a.close-modal {
  color: #ffffff;
}

/* line 370, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte .heading h2 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  margin-bottom: 0;
  letter-spacing: normal;
  text-align: left;
  color: #c80205;
}

/* line 382, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte .heading h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  text-align: left;
  color: #ffffff;
  padding-bottom: 30px;
}

/* line 397, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte form label {
  display: block;
  width: 100%;
}

/* line 401, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte form label span {
  padding-bottom: 5px;
  display: block;
}

/* line 406, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte form label input,
.modal-kundenkarte form label textarea {
  border-color: #4a4a4a;
  width: 100%;
}

/* line 411, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte form label input:focus,
.modal-kundenkarte form label textarea:focus {
  border-color: #c80205;
}

/* line 416, resources/assets/styles/components/_modals.scss */

.modal-kundenkarte form label .plz {
  width: 90px !important;
  margin: auto;
}

/* line 426, resources/assets/styles/components/_modals.scss */

.show-modal {
  overflow: hidden;
}

/* line 429, resources/assets/styles/components/_modals.scss */

.show-modal .modal-container {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*#competition_form{
  .drop-down-container:before, .drop-down-container:after{
    background: $scarlet; 
  }
}*/

/* line 447, resources/assets/styles/components/_modals.scss */

.modal-container.modal-fragen a.close-modal {
  top: 10vh !important;
  right: 10px !important;
}

@media screen and (max-width: 1440px) {
  /* line 456, resources/assets/styles/components/_modals.scss */

  .modal-fragen h1 {
    font-size: 60px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 463, resources/assets/styles/components/_modals.scss */

  .modal-fragen form {
    width: 100%;
  }

  /* line 466, resources/assets/styles/components/_modals.scss */

  .modal-fragen form h1 {
    font-family: "Demos Next W01 Regular", serif;
    font-size: 80px;
  }

  /* line 471, resources/assets/styles/components/_modals.scss */

  .modal-container.modal-fragen a.close-modal {
    top: 7vh !important;
    right: 20px !important;
  }
}

@media screen and (max-width: 1100px) {
  /* line 478, resources/assets/styles/components/_modals.scss */

  .modal-container > .container,
  .two-column-carousel .modal-container > .tns-outer {
    height: auto !important;
  }
}

@media screen and (max-width: 989px) {
  /* line 485, resources/assets/styles/components/_modals.scss */

  .modal-container .heading {
    padding: 30px 0 0;
  }

  /* line 489, resources/assets/styles/components/_modals.scss */

  .modal-fragen h1 {
    margin-top: 0;
  }

  /* line 492, resources/assets/styles/components/_modals.scss */

  .modal-container.modal-fragen a.close-modal {
    top: 8vh !important;
    right: 20px !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 503, resources/assets/styles/components/_modals.scss */

  label.last-checkbox {
    margin-top: 0;
  }

  /* line 508, resources/assets/styles/components/_modals.scss */

  form .checkboxes {
    margin-bottom: 10px;
    margin-top: 0px;
  }

  /* line 512, resources/assets/styles/components/_modals.scss */

  form .checkboxes label {
    width: 100%;
  }

  /* line 515, resources/assets/styles/components/_modals.scss */

  form .checkboxes label input {
    width: 100%;
  }

  /* line 521, resources/assets/styles/components/_modals.scss */

  .modal-container a.close-modal {
    right: 30px;
    top: 6vh;
  }
}

@media screen and (max-width: 480px) {
  /* line 531, resources/assets/styles/components/_modals.scss */

  .modal-container {
    overflow: auto;
    height: 100vh;
    padding: 0px 20px;
    display: block;
  }

  /* line 537, resources/assets/styles/components/_modals.scss */

  .modal-container .btn,
  .modal-container .comment-form input[type="submit"],
  .comment-form .modal-container input[type="submit"] {
    width: 100%;
    margin-bottom: 20px;
  }

  /* line 543, resources/assets/styles/components/_modals.scss */

  .modal-fragen form h1 {
    font-family: "Demos Next W01 Regular", serif;
    font-size: 40px;
  }

  /* line 551, resources/assets/styles/components/_modals.scss */

  .modal-newsletter form .contact-details {
    padding-bottom: 0;
  }

  /* line 554, resources/assets/styles/components/_modals.scss */

  .modal-newsletter form .contact-details label input {
    width: 100%;
  }

  /* line 560, resources/assets/styles/components/_modals.scss */

  .modal-container a.close-modal {
    right: 10px;
    top: 6vh;
  }
}

/* Static map elements */

/* line 9, resources/assets/styles/components/_maps.scss */

.nav-footer-map-bg {
  background-size: cover;
  background-position: center center;
  position: relative;
}

/* line 16, resources/assets/styles/components/_maps.scss */

.desktop-nav-map {
  z-index: 5;
  display: block;
  max-width: 260px;
  height: 100%;
  max-height: 350px;
  border: 2px solid #fff;
  position: relative;
}

/* line 25, resources/assets/styles/components/_maps.scss */

.desktop-nav-map .map-overlay {
  opacity: 1;
  z-index: 5;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

/* line 29, resources/assets/styles/components/_maps.scss */

.desktop-nav-map .map-overlay:before {
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}

/* line 48, resources/assets/styles/components/_maps.scss */

.desktop-nav-map .map-overlay:after {
  font-size: 115px;
}

/* line 54, resources/assets/styles/components/_maps.scss */

.desktop-nav-map:hover .map-overlay {
  position: relative;
  opacity: 0;
  z-index: 5;
}

/* line 59, resources/assets/styles/components/_maps.scss */

.desktop-nav-map:hover .map-overlay:before {
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}

/* line 71, resources/assets/styles/components/_maps.scss */

.map,
.map-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 300px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

/* line 83, resources/assets/styles/components/_maps.scss */

.map i,
.map-container i {
  font-size: 150px;
  color: #ffffff;
  position: absolute;
  margin: auto;
  z-index: 3;
  opacity: 1;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 101, resources/assets/styles/components/_maps.scss */

.map i:before,
.map-container i:before {
  font-size: 200px;
}

/* line 106, resources/assets/styles/components/_maps.scss */

.map:before,
.map-container:before {
  z-index: 3;
  content: "";
  position: absolute;
  background-color: rgba(200, 2, 5, 0.7);
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 0%;
  pointer-events: none;
  top: 0;
  left: 0;
}

/* line 120, resources/assets/styles/components/_maps.scss */

.map:before:hover,
.map-container:before:hover {
  opacity: 0;
}

/* line 127, resources/assets/styles/components/_maps.scss */

.map:hover:before,
.map-container:hover:before {
  opacity: 0;
  -webkit-transform: scale(0.9);
       -o-transform: scale(0.9);
          transform: scale(0.9);
}

/* line 133, resources/assets/styles/components/_maps.scss */

.map:hover i,
.map-container:hover i {
  opacity: 0;
}

/* line 140, resources/assets/styles/components/_maps.scss */

.footer-map img {
  width: auto;
  height: auto;
}

/* Filter map */

/* line 147, resources/assets/styles/components/_maps.scss */

.map-container {
  position: relative;
  height: 50vh;
  min-height: 300px;
}

/* line 152, resources/assets/styles/components/_maps.scss */

.map-container #map-element,
.map-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Map Widget */

/* line 164, resources/assets/styles/components/_maps.scss */

.map-element {
  z-index: 2;
  height: 50vh;
  min-height: 300px;
}

/* line 169, resources/assets/styles/components/_maps.scss */

.map-element i {
  pointer-events: none;
}

/* line 176, resources/assets/styles/components/_maps.scss */

.pharmacy-contact-details {
  margin-top: -25vh;
  position: relative;
  z-index: 10;
}

/* line 182, resources/assets/styles/components/_maps.scss */

.details-container {
  padding: 50px 40px 40px;
  border: 3px solid #c80205;
  background-color: #fff;
  width: 100%;
  max-width: 350px;
  float: right;
}

/* line 193, resources/assets/styles/components/_maps.scss */

.map-overlay:hover:before,
.map-overlay:hover:after,
.map-overlay.focused:before,
.map-overlay.focused:after {
  opacity: 0;
}

/* line 198, resources/assets/styles/components/_maps.scss */

.map-overlay:before {
  opacity: 0.7;
  content: '  ';
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #c80205;
  top: 0;
  left: 0;
  z-index: 1001;
}

/* line 211, resources/assets/styles/components/_maps.scss */

.map-overlay:after {
  z-index: 1001;
  opacity: 1;
  font-style: normal;
  font-weight: normal;
  speak: none;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\E801';
  font-family: 'fontello', sans-serif;
  position: absolute;
  pointer-events: none;
  color: #ffffff;
  top: 0;
  left: 0;
  margin: 0 auto;
  height: auto;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 200px;
}

/* line 247, resources/assets/styles/components/_maps.scss */

.pharmacy-contact-details {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  /* line 254, resources/assets/styles/components/_maps.scss */

  .pharmacy-contact-details {
    margin-top: -8vh;
  }

  /* line 258, resources/assets/styles/components/_maps.scss */

  .map-container i.icon:before {
    font-size: 140px !important;
  }
}

@media screen and (max-width: 767px) {
  /* line 265, resources/assets/styles/components/_maps.scss */

  .pharmacy-contact-details {
    margin-top: -8vh;
  }

  /* line 269, resources/assets/styles/components/_maps.scss */

  .map-container i.icon:before {
    font-size: 120px !important;
  }
}

/* line 1, resources/assets/styles/components/_bodyfilter.scss */

.body-filter-container {
  z-index: 99999;
}

/* Prevent body from scrolling when you scroll the body filter. */

/* line 6, resources/assets/styles/components/_bodyfilter.scss */

.show-body-filter {
  overflow: hidden;
}

/* line 11, resources/assets/styles/components/_bodyfilter.scss */

.close-symptom-list em {
  font-style: normal;
  position: absolute;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(-45deg);
  display: block;
  font-size: 30px;
  left: 0;
  right: 2px;
  margin: 0 auto;
  top: 2px;
  line-height: 30px;
}

/* line 27, resources/assets/styles/components/_bodyfilter.scss */

.remove-tag i,
.bodyfilter .results .btn .close-icon i.icon,
.bodyfilter .results .comment-form input[type="submit"] .close-icon i.icon,
.comment-form .bodyfilter .results input[type="submit"] .close-icon i.icon {
  pointer-events: none;
}

/* line 32, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: fixed;
  width: 100%;
  padding: 40px;
  top: 0;
  left: -120%;
  opacity: 0;
  z-index: 999;
  overflow-y: scroll;
  height: 100%;
  /***
   The flip card container - set the width and height to whatever you want.
   We have added the border property to demonstrate that the flip itself goes
   out of the box on hover (remove perspective if you don't want the 3D effect
   */
}

/* line 44, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter,
.bodyfilter * {
  pointer-events: none;
}

/* line 48, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.active,
.bodyfilter.active * {
  pointer-events: all;
}

/* line 53, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.front .for-front_male-view {
  display: block;
}

/* line 57, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.front .for-front_female-view {
  display: block;
}

/* line 63, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.back .for-back_male-view {
  display: block;
}

/* line 67, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.back .for-back_female-view {
  display: block;
}

/* line 72, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .field-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 78, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter input[type="checkbox"],
.bodyfilter input[type="radio"] {
  position: absolute;
  visibility: hidden;
  display: block;
}

/* line 84, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter input[type="checkbox"]:checked + span,
.bodyfilter input[type="radio"]:checked + span {
  font-weight: bold;
}

/* line 91, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .field-label {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.28;
  letter-spacing: 1px;
  text-align: left;
  margin-bottom: 20px;
}

/* line 99, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .row.padded-row {
  width: 100%;
  padding-left: 25px;
}

/* line 105, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.male {
  background: #dcecf1;
}

/* line 112, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.male.active input:checked + .btn:not(.disabled),
.bodyfilter.male.active .comment-form input:checked + input:not(.disabled)[type="submit"],
.comment-form .bodyfilter.male.active input:checked + input:not(.disabled)[type="submit"],
.bodyfilter.male.active .btn.active:not(.disabled),
.bodyfilter.male.active .comment-form input.active:not(.disabled)[type="submit"],
.comment-form .bodyfilter.male.active input.active:not(.disabled)[type="submit"],
.bodyfilter.male.active .btn:hover:not(.disabled),
.bodyfilter.male.active .comment-form input:hover:not(.disabled)[type="submit"],
.comment-form .bodyfilter.male.active input:hover:not(.disabled)[type="submit"] {
  color: #ffffff;
  background: #3f95b3;
  border-color: #3f95b3;
  opacity: 1;
}

/* line 119, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.male.active input:checked + .btn .close-icon,
.bodyfilter.male.active .comment-form input:checked + input[type="submit"] .close-icon,
.comment-form .bodyfilter.male.active input:checked + input[type="submit"] .close-icon,
.bodyfilter.male.active .btn.active .close-icon,
.bodyfilter.male.active .comment-form input.active[type="submit"] .close-icon,
.comment-form .bodyfilter.male.active input.active[type="submit"] .close-icon,
.bodyfilter.male.active .btn:hover .close-icon,
.bodyfilter.male.active .comment-form input:hover[type="submit"] .close-icon,
.comment-form .bodyfilter.male.active input:hover[type="submit"] .close-icon {
  z-index: 1;
  pointer-events: none;
}

/* line 126, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.male.active .item-expand.active {
  background: rgba(63, 149, 179, 0.3);
}

/* line 130, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.male.active .item-expand h4:hover,
.bodyfilter.male.active .item-expand a:hover {
  background: rgba(63, 149, 179, 0.2);
}

/* line 139, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.male .body-dot {
  r: 25;
  fill: #3f95b3;
  stroke: #3f95b3;
  stroke-width: 6px;
  opacity: 0.6;
  cursor: pointer;
}

/* line 150, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.male .body-dot.active {
  fill: #cf2d4a;
  r: 25;
  opacity: 1;
  -webkit-animation: bodypulse 2s infinite;
       -o-animation: bodypulse 2s infinite;
          animation: bodypulse 2s infinite;
}

/* line 157, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.male .body-dot:hover {
  opacity: 1;
  r: 25;
}

/* line 165, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.female {
  background: #f5d4da;
}

/* line 174, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.female.active input:checked + .btn:not(.disabled),
.bodyfilter.female.active .comment-form input:checked + input:not(.disabled)[type="submit"],
.comment-form .bodyfilter.female.active input:checked + input:not(.disabled)[type="submit"],
.bodyfilter.female.active .btn.active:not(.disabled),
.bodyfilter.female.active .comment-form input.active:not(.disabled)[type="submit"],
.comment-form .bodyfilter.female.active input.active:not(.disabled)[type="submit"],
.bodyfilter.female.active .btn:hover:not(.disabled),
.bodyfilter.female.active .comment-form input:hover:not(.disabled)[type="submit"],
.comment-form .bodyfilter.female.active input:hover:not(.disabled)[type="submit"] {
  color: #ffffff;
  background: #cf448e;
  border-color: #cf448e;
  opacity: 1;
}

/* line 184, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.female.active .item-expand.active {
  background: rgba(207, 68, 142, 0.3);
}

/* line 188, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.female.active .item-expand h4:hover,
.bodyfilter.female.active .item-expand a:hover {
  background: rgba(207, 68, 142, 0.2);
}

/* line 195, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.female .body-dot {
  r: 25;
  fill: #cf448e;
  stroke: #cf448e;
  stroke-width: 6px;
  opacity: 0.6;
  cursor: pointer;
}

/* line 205, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.female .body-dot.active {
  fill: #cf2d4a;
  r: 30;
  opacity: 1;
  -webkit-animation: bodypulse 2s infinite;
       -o-animation: bodypulse 2s infinite;
          animation: bodypulse 2s infinite;
}

/* line 212, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.female .body-dot:hover {
  opacity: 1;
  r: 30;
}

/* line 221, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter.active {
  left: 0;
  opacity: 1;
  width: 100%;
}

/* line 227, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter i.icon.close-btn {
  font-size: 50px;
  font-style: normal;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  right: 4%;
  cursor: pointer;
  line-height: 44px;
  text-align: center;
  z-index: 1;
}

/* line 242, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .btn,
.bodyfilter .comment-form input[type="submit"],
.comment-form .bodyfilter input[type="submit"] {
  color: #4a4a4a;
  font-family: "Oxygen", sans-serif;
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.27;
  letter-spacing: normal;
  text-align: center;
  margin-right: 32px;
  min-width: 50px;
  width: auto;
}

/* line 257, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .sex.field-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 261, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .ages.field-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 266, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .ages .btn,
.bodyfilter .ages .comment-form input[type="submit"],
.comment-form .bodyfilter .ages input[type="submit"] {
  min-width: 80px !important;
  padding: 6px;
}

/* line 272, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand {
  padding-bottom: 10px;
  display: none;
  cursor: pointer;
}

/* line 277, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand h4 {
  font-family: "Oxygen", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: 0.3px;
  text-align: left;
  padding: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}

/* line 285, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand h4 span {
  display: block;
  width: 100%;
  padding: 5px 25px;
  cursor: pointer;
}

/* line 292, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand h4 i {
  display: none;
}

/* line 297, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand label,
.bodyfilter .item-expand .label {
  display: block;
  padding: 5px 25px;
  margin: 0;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-family: "Oxygen", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.76;
  text-align: left;
}

/* line 307, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand label.expand span,
.bodyfilter .item-expand .label.expand span {
  display: block;
}

/* line 313, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand .exp_otheritems {
  display: none;
}

/* line 318, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand.active h4 {
  background: #cf2d4a !important;
  color: #ffffff;
}

/* line 322, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand.active h4:after {
  display: block;
  content: "";
  clear: both;
}

/* line 328, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand.active h4 i {
  display: block;
  background: #4a4a4a;
  font-style: normal;
  float: right;
  height: 40px;
  width: 30px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  font-weight: 100;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 344, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand.active h4 i:hover {
  opacity: 0.6;
  cursor: pointer;
}

/* line 351, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand.active .exp_otheritems {
  display: block;
}

/* line 355, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .item-expand.active .expand {
  display: none;
}

/* line 361, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .mobi-submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 367, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .mobi-submit-wrap input {
  margin: 10px 5px !important;
}

/* line 373, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .results {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 380, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .results .btn,
.bodyfilter .results .comment-form input[type="submit"],
.comment-form .bodyfilter .results input[type="submit"] {
  position: relative;
  padding: 5px 40px;
  margin: 12px 10px;
}

/* line 385, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .results .btn .icon-health-tips,
.bodyfilter .results .comment-form input[type="submit"] .icon-health-tips,
.comment-form .bodyfilter .results input[type="submit"] .icon-health-tips {
  position: absolute;
  left: 0;
  width: 30px;
  font-size: 18px;
  background: #cf2d4a;
  height: 100%;
  top: 0;
  line-height: 28px;
  color: #ffffff;
}

/* line 397, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .results .btn .close-icon,
.bodyfilter .results .comment-form input[type="submit"] .close-icon,
.comment-form .bodyfilter .results input[type="submit"] .close-icon {
  height: 100%;
  width: 20px;
  position: absolute;
  right: 0;
  top: 0;
  background: #4a4a4a;
  z-index: -2;
}

/* line 406, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .results .btn .close-icon i,
.bodyfilter .results .comment-form input[type="submit"] .close-icon i,
.comment-form .bodyfilter .results input[type="submit"] .close-icon i {
  margin: 1px 0 0 -1px;
  font-weight: 100;
  font-style: normal;
  -webkit-transform: rotate(45deg) !important;
  -o-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
  display: inline-block;
  font-size: 24px;
  text-align: center;
  line-height: 16px;
  padding: 5px;
  color: #ffffff;
  z-index: -2;
  font-family: serif;
}

/* line 432, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip {
  width: 120px;
  margin: 20px auto 50px;
}

/* line 437, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip.active img {
  -webkit-transform: rotate(-180deg);
       -o-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/* line 441, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip.active:hover img {
  -webkit-transform: rotate(-360deg) scale(0.8);
       -o-transform: rotate(-360deg) scale(0.8);
          transform: rotate(-360deg) scale(0.8);
}

/* line 445, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip img {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* line 449, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip:hover img {
  opacity: 0.5;
  -webkit-transform: rotate(180deg) scale(0.8);
       -o-transform: rotate(180deg) scale(0.8);
          transform: rotate(180deg) scale(0.8);
  cursor: pointer;
}

/* line 455, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip-card {
  background-color: transparent;
  -webkit-perspective: 2000px;
          perspective: 2000px;
  height: 1200px;
  display: none;
}

/* line 462, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip-card.active {
  display: block;
}

/* line 466, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flipped.flip-card-front {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
}

/* line 471, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flipped.flip-card-side {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
}

/* line 476, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flipped.flip-card-back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
}

/* line 481, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip-card-front,
.bodyfilter .flip-card-back,
.bodyfilter .flip-card-side {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  text-align: center;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s, -o-transform 0.6s;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  opacity: 0.6;
}

/* line 497, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip-card-front {
  z-index: 3;
}

/* line 501, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip-card-side {
  z-index: 2;
}

/* line 505, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip-card-back {
  z-index: 1;
}

/* line 509, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter .flip-card svg {
  height: 100%;
}

/* line 514, resources/assets/styles/components/_bodyfilter.scss */

.bodyfilter input#submit_body_filter {
  margin-right: 0;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 528, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .btn,
  .bodyfilter .comment-form input[type="submit"],
  .comment-form .bodyfilter input[type="submit"] {
    margin-right: 10px;
  }

  /* line 532, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .flip {
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 545, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter.front .for-front_male-view,
  .bodyfilter.front .for-front_female-view,
  .bodyfilter.front .for-back_male-view,
  .bodyfilter.front .for-back_female-view,
  .bodyfilter.back .for-front_male-view,
  .bodyfilter.back .for-front_female-view,
  .bodyfilter.back .for-back_male-view,
  .bodyfilter.back .for-back_female-view {
    display: none;
  }

  /* line 551, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter:before {
    background: rgba(39, 39, 39, 0);
    content: "";
    display: block;
    height: 100%;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: -1;
  }

  /* line 565, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter.mobi-bodyfilter:before {
    background: rgba(39, 39, 39, 0.6);
    z-index: 1;
  }

  /* line 571, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .flip-card {
    height: 800px;
  }

  /* line 574, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .flip-card svg {
    height: 768px;
    margin-top: -34px;
    max-width: 100%;
  }

  /* line 581, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .item-expand {
    padding-bottom: 10px;
    display: none;
  }

  /* line 585, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .item-expand.active {
    background: #ffffff !important;
    display: block;
    position: fixed;
    z-index: 21;
    width: 80%;
    left: 0;
    top: 15%;
    margin: 0 10%;
  }
}

@media screen and (max-width: 767px) {
  /* line 601, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter {
    width: 100%;
    padding: 30px 15px;
    z-index: 9999;
  }

  /* line 606, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .row {
    width: initial;
  }

  /* line 609, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .row .padded-row {
    padding-left: 0;
  }

  /* line 614, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .flip-card {
    height: 800px;
  }

  /* line 617, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .flip-card svg {
    height: 768px;
    margin-top: -34px;
    max-width: 100%;
  }

  /* line 624, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter i.icon.close-btn {
    right: 20px;
  }

  /* line 628, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .btn,
  .bodyfilter .comment-form input[type="submit"],
  .comment-form .bodyfilter input[type="submit"] {
    padding: 5px 10px;
    margin-right: 4px !important;
    font-size: 12px;
  }

  /* line 634, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .field-label {
    font-size: 26px;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  /* line 640, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  /* line 646, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .results .btn.results-item,
  .bodyfilter .results .comment-form input.results-item[type="submit"],
  .comment-form .bodyfilter .results input.results-item[type="submit"] {
    position: relative;
    padding: 8px 40px;
    width: auto;
    margin: 5px 0;
  }

  /* line 654, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter input#submit_body_filter {
    padding: 10px;
    font-size: 14px;
    min-width: 180px;
  }

  /* line 660, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .mobi-submit-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px 30px;
    z-index: 9;
  }

  /* line 668, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .item-expand {
    padding-bottom: 10px;
    display: none;
  }

  /* line 672, resources/assets/styles/components/_bodyfilter.scss */

  .bodyfilter .item-expand.active {
    background: #ffffff !important;
    display: block;
    position: fixed;
    z-index: 21;
    width: 86%;
    left: 0;
    top: 5%;
    margin: 0 6%;
  }
}

@-webkit-keyframes bodypulse {
  0% {
    r: 25;
    opacity: 0.6;
  }

  60% {
    r: 40;
    opacity: 1;
  }

  100% {
    r: 25;
    opacity: 0.6;
  }
}

@-o-keyframes bodypulse {
  0% {
    r: 25;
    opacity: 0.6;
  }

  60% {
    r: 40;
    opacity: 1;
  }

  100% {
    r: 25;
    opacity: 0.6;
  }
}

@keyframes bodypulse {
  0% {
    r: 25;
    opacity: 0.6;
  }

  60% {
    r: 40;
    opacity: 1;
  }

  100% {
    r: 25;
    opacity: 0.6;
  }
}

/* line 2, resources/assets/styles/widgets/_widgets.scss */

.child-site .main-site-only {
  display: none;
  margin: 0;
}

/* line 6, resources/assets/styles/widgets/_widgets.scss */

.child-site .main-site-only + section {
  margin-top: 0;
}

/* line 12, resources/assets/styles/widgets/_widgets.scss */

.widget,
section {
  clear: both;
}

/* line 17, resources/assets/styles/widgets/_widgets.scss */

section.first-section {
  margin-top: 100px;
}

/* Row classes - used in King Composes */

/* line 28, resources/assets/styles/widgets/_widgets.scss */

main > div + section {
  margin-top: 0;
}

/* line 36, resources/assets/styles/widgets/_widgets.scss */

.line-background {
  position: relative;
}

/* line 39, resources/assets/styles/widgets/_widgets.scss */

.line-background:before {
  background-color: #4a4a4a;
  width: 1px;
  height: calc(100% + 80px);
  content: " ";
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  top: 0;
  bottom: 0;
}

/* line 54, resources/assets/styles/widgets/_widgets.scss */

.line-background > div {
  z-index: 10;
  position: relative;
}

/* line 60, resources/assets/styles/widgets/_widgets.scss */

.line-background.line-mask-container > .kc-row-container {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding-bottom: 20px;
}

/* line 73, resources/assets/styles/widgets/_widgets.scss */

section:not(.line-background) + .line-background:before {
  height: calc(100% + 160px);
  top: -40px;
}

/* Hub systems  (Services and Pharmacies listings) */

/* line 83, resources/assets/styles/widgets/_widgets.scss */

.hub-widget {
  padding: 0px 0;
}

/* line 2, resources/assets/styles/common/_typography.scss */

.hub-widget .headline h2,
.hub-widget .headline .main-heading {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 55px;
  font-weight: bold;
  line-height: 1.56;
  text-align: center;
  color: #c80205;
  margin-bottom: 50px;
  line-height: normal;
  text-transform: none;
}

/* line 9, resources/assets/styles/common/_typography.scss */

.hub-widget .headline h3,
.hub-widget .headline .overline {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 1px;
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: normal;
  text-transform: uppercase;
}

/* line 90, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item {
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 97, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .excerpt-title {
  font-family: "Demos Next W01 Bold", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}

/* line 101, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 108, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .text-description {
  padding-right: 30px;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}

/* line 115, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .read-more-blocks {
  position: absolute;
  bottom: 10px;
  right: 0;
}

/* line 120, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .read-more-blocks i {
  height: 13px;
  width: 13px;
  border: 2px solid;
  background: transparent;
  display: block;
  margin-bottom: 8px;
}

/* line 130, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .text {
  font-family: "Oxygen", sans-serif;
  font-size: 17px;
  line-height: 1.29;
  text-align: left;
  line-height: 28px;
  color: #4a4a4a;
}

/* line 136, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap {
  border-radius: 50%;
  height: 370px;
  width: 370px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 149, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap img {
  height: 140%;
  width: auto;
  display: block;
  z-index: -1;
}

/* line 157, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 40px 0 0;
  color: #ffffff;
}

/* line 167, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap2:before {
  opacity: 0.7;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  top: 0;
  left: 0;
  margin: 0;
}

/* line 180, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap2 .icon {
  font-size: 90px;
  height: 90px;
  width: 90px;
  margin: auto;
  margin-bottom: 20px;
}

/* line 187, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap2 .icon:before {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  line-height: 90px !important;
  width: 100%;
  display: block;
  font-size: 85px;
}

/* line 198, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap2 h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 33px;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: 0.7px;
  text-align: center;
  color: #ffffff !important;
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  padding: 0 15px;
}

/* line 213, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap2 h3 a {
  color: #ffffff;
}

/* line 218, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap2 .btn,
.hub-widget .single-item .img-wrap .icon-heading-wrap2 .comment-form input[type="submit"],
.comment-form .hub-widget .single-item .img-wrap .icon-heading-wrap2 input[type="submit"] {
  color: #ffffff;
  font-family: "Oxygen", sans-serif;
}

/* line 222, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap2 .icon-hand-box:before {
  font-size: 4.2rem !important;
  left: -15%;
  position: relative;
}

/* line 230, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 40px 0 0;
  color: #ffffff;
}

/* line 240, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap:before {
  opacity: 0.7;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  top: 0;
  left: 0;
  margin: 0;
}

/* line 253, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap .icon {
  font-size: 90px;
  height: 90px;
  width: 90px;
  margin: auto;
  margin-bottom: 20px;
}

/* line 260, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap .icon:before {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  line-height: 90px !important;
  width: 100%;
  display: block;
  font-size: 85px;
}

/* line 271, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 33px;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: 0.7px;
  text-align: center;
  color: #ffffff !important;
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  padding: 0 15px;
}

/* line 286, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap h3 a {
  color: #ffffff;
}

/* line 291, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap .btn,
.hub-widget .single-item .img-wrap .icon-heading-wrap .comment-form input[type="submit"],
.comment-form .hub-widget .single-item .img-wrap .icon-heading-wrap input[type="submit"] {
  color: #ffffff;
  font-family: "Oxygen", sans-serif;
}

/* line 295, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap .icon-hand-box:before {
  font-size: 4.2rem !important;
  left: -15%;
  position: relative;
}

/* line 305, resources/assets/styles/widgets/_widgets.scss */

.hub-widget .single-item:hover .img-wrap img {
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* line 318, resources/assets/styles/widgets/_widgets.scss */

.two-columned-article .cta {
  margin: 30px 0;
}

/* line 326, resources/assets/styles/widgets/_widgets.scss */

h3.icon-content-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
}

/* line 329, resources/assets/styles/widgets/_widgets.scss */

h3.icon-content-heading .icon {
  font-size: 60px;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  /* line 329, resources/assets/styles/widgets/_widgets.scss */

  h3.icon-content-heading .icon {
    padding-bottom: 15px;
    padding-right: 0;
    text-align: center;
    font-size: 50px;
  }
}

@media screen and (max-width: 767px) {
  /* line 326, resources/assets/styles/widgets/_widgets.scss */

  h3.icon-content-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 990px) and (max-width: 1365px) {
  /* line 359, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap {
    height: 300px;
    width: 300px;
    max-width: 100%;
  }

  /* line 367, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap h3 {
    font-size: 22px;
  }

  /* line 371, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap .icon {
    font-size: 70px;
    height: 65px;
    width: 70px;
    margin: auto;
    margin-bottom: 15px;
  }

  /* line 378, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap .icon:before {
    font-size: 60px !important;
    line-height: 60px !important;
  }

  /* line 387, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap2 h3 {
    font-size: 22px;
  }

  /* line 391, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap2 .icon {
    font-size: 70px;
    height: 65px;
    width: 70px;
    margin: auto;
    margin-bottom: 15px;
  }

  /* line 398, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap2 .icon:before {
    font-size: 60px !important;
    line-height: 60px !important;
  }

  /* line 407, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .read-more-blocks i {
    height: 12px;
    width: 12px;
    margin-bottom: 5px;
  }

  /* line 413, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .read-more-blocks {
    right: 10px;
  }

  /* line 417, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .excerpt-title {
    font-size: 26px;
    word-break: break-word;
  }
}

@media screen and (max-width: 1023px) {
  /* line 433, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap {
    height: 300px;
    width: 300px;
    margin-bottom: 0;
  }

  /* line 438, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }

  /* line 446, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap .icon {
    height: 60px;
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
  }

  /* line 452, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap .icon:before {
    font-size: 70px !important;
    line-height: 60px !important;
  }

  /* line 458, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap h3 {
    font-size: 18px !important;
    padding: 0 15px;
    word-break: break-word;
    margin-bottom: 15px !important;
  }

  /* line 466, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }

  /* line 474, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap2 .icon {
    height: 60px;
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
  }

  /* line 480, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap2 .icon:before {
    font-size: 70px !important;
    line-height: 60px !important;
  }

  /* line 486, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap2 h3 {
    font-size: 18px !important;
    padding: 0 15px;
    word-break: break-word;
    margin-bottom: 15px !important;
  }

  /* line 495, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .excerpt-title {
    font-size: 20px;
    word-break: break-word;
  }

  /* line 503, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .text-description {
    padding-right: 30px;
    max-width: 640px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
  }
}

@media screen and (max-width: 767px) {
  /* line 525, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap {
    height: 300px;
    width: 300px;
    margin: auto;
    float: none;
  }

  /* line 532, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap h3 {
    font-size: 22px !important;
    padding: 0 15px;
  }

  /* line 537, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap .btn,
  .hub-widget .single-item .img-wrap .icon-heading-wrap .comment-form input[type="submit"],
  .comment-form .hub-widget .single-item .img-wrap .icon-heading-wrap input[type="submit"] {
    display: inline-block !important;
  }

  /* line 543, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .text-description {
    padding-right: 20px;
    max-width: 280px;
    position: relative;
    margin: 10px auto;
  }

  /* line 549, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .text-description .excerpt-title {
    font-size: 28px;
    padding-bottom: 10px;
  }

  /* line 554, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .text-description .text {
    font-size: 16px;
    padding-right: 10px;
    line-height: 1.25;
  }

  /* line 564, resources/assets/styles/widgets/_widgets.scss */

  .huge_btn {
    max-width: 280px;
    display: block;
    white-space: normal;
  }

  /* line 571, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .img-wrap .icon-heading-wrap a.btn {
    font-size: 15px;
    letter-spacing: 0.6px;
    margin-bottom: 25px;
  }

  /* line 577, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .read-more-blocks {
    right: 0;
    bottom: 10px !important;
    top: auto;
  }

  /* line 582, resources/assets/styles/widgets/_widgets.scss */

  .hub-widget .single-item .read-more-blocks i {
    height: 13.1px;
    width: 13px;
    margin-bottom: 4.1px;
  }
}

@media screen and (max-width: 599px) {
  /* line 594, resources/assets/styles/widgets/_widgets.scss */

  section.widget.container.mobile-full-width,
  .two-column-carousel section.widget.mobile-full-width.tns-outer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* line 601, resources/assets/styles/widgets/_widgets.scss */

  section.widget.container.mobile-full-width > .row > .col-12,
  .two-column-carousel section.widget.mobile-full-width.tns-outer > .row > .col-12 {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 607, resources/assets/styles/widgets/_widgets.scss */

  .line-background:before {
    height: calc(100%);
  }
}

/* line 1, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget {
  background-size: cover;
}

/* line 8, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget.align-right > .container > .row > div:first-child,
.two-column-carousel .jumbotron-widget.align-right > .tns-outer > .row > div:first-child {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

/* line 15, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget .icon {
  font-size: 95px;
  display: block;
  margin-bottom: 20px;
}

/* line 21, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget .headline {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* line 26, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget .headline p {
  display: none;
}

/* line 32, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget h3 {
  font-family: "Demos Next W01 Cn", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  text-align: left;
}

/* line 36, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget h4 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
}

/* line 40, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget .text {
  font-family: "Oxygen", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 30px;
}

/* line 44, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget .text p {
  font-family: "Oxygen", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
}

/* line 49, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget .content-container {
  padding: 80px 60px;
  color: #4a4a4a;
  text-align: left;
  display: block;
}

/* line 57, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget .jumbo-image-container {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

/* line 69, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget.image-style-full-width .content-container {
  color: #ffffff;
}

/* line 72, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget.image-style-full-width .content-container a {
  color: #ffffff;
  border-color: #ffffff;
}

/* line 79, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget.image-style-image_text {
  color: #4a4a4a;
}

/* line 82, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget.image-style-image_text h3 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
}

/* line 86, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget.image-style-image_text .icon {
  font-size: 60px;
  margin: 0 0 10px;
}

@media screen {
  /* line 86, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget.image-style-image_text .icon {
    color: #000000;
  }
}

/* line 94, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget.image-style-image_text .icon:before {
  margin: 0;
}

/* Newsletter jumbotron */

/* line 104, resources/assets/styles/widgets/_jumbotron.scss */

.newsletter {
  background: #fff !important;
  position: relative !important;
  z-index: 1 !important;
}

@media screen and (max-width: 1023px) {
  /* line 110, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .text {
    font-size: 16px;
  }
}

/* line 116, resources/assets/styles/widgets/_jumbotron.scss */

.newsletter .jumbotron-widget .jumbo-image-container {
  opacity: 1;
}

/* line 124, resources/assets/styles/widgets/_jumbotron.scss */

section#ha-mazine .content-container {
  background-color: rgba(200, 2, 5, 0.7);
}

/* line 129, resources/assets/styles/widgets/_jumbotron.scss */

.jumbotron-widget .icon.icon-pharmacy {
  width: 80px;
  height: 80px;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 139, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget h3 {
    font-size: 33px;
  }

  /* line 143, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget h4 {
    font-size: 26px;
  }

  /* line 148, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget.image-style-image_text .content-container {
    padding: 40px;
  }

  /* line 151, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget.image-style-image_text .content-container h3 {
    font-size: 38px;
  }

  /* line 157, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .jumbo-image-container {
    padding: 30px;
    min-height: 480px;
  }
}

@media screen and (max-width: 1100px) {
  /* line 165, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget {
    margin-left: -15px;
    margin-right: -15px;
  }

  /* line 171, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .container,
  .jumbotron-widget .two-column-carousel .tns-outer,
  .two-column-carousel .jumbotron-widget .tns-outer {
    max-width: 100%;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  /* line 185, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .jumbo-image-container {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  /* line 193, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .jumbo-image-container {
    max-width: 100%;
    display: block;
  }

  /* line 198, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .content-container {
    padding: 20px 40px 60px;
    background: #fff;
    max-width: 680px;
    margin: 40px auto;
    position: relative;
    width: 100%;
  }

  /* line 208, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget.image-style-image_text .icon {
    color: #4a4a4a;
  }

  /* line 213, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .icon {
    color: #4a4a4a;
  }

  /* line 217, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .headline {
    margin-bottom: 5px;
  }

  /* line 220, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .headline h4 {
    color: #4a4a4a;
  }

  /* line 225, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .text {
    line-height: normal;
    margin-bottom: 20px;
  }

  /* line 230, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .jumbo-image-container {
    min-height: 0;
    opacity: 1;
  }

  /* line 236, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .content-container {
    top: 0;
    position: relative;
    background-color: #fff !important;
  }

  /* line 244, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget {
    min-height: 0;
  }

  /* line 248, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget.align-left .content-container {
    left: 0;
    right: auto;
  }

  /* line 255, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget.align-right .content-container {
    left: auto;
    right: 0;
  }

  /* line 261, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .content-container {
    z-index: 100;
    padding: 40px;
    max-width: 50%;
  }

  /* line 266, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .content-container .headline,
  .jumbotron-widget .content-container .text {
    margin: 0;
  }

  /* line 270, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .content-container i.icon {
    line-height: 1;
    margin: 0 0 20px;
  }

  /* line 276, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .jumbo-image-container {
    min-height: 0;
    padding: 30px 40px 40px;
    height: auto;
    max-width: 50%;
  }

  /* line 283, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .text {
    font-family: "Oxygen", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    padding-bottom: 20px;
  }

  /* line 291, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget h4 {
    font-size: 28px;
  }

  /* line 295, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget h3 {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  /* line 306, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget {
    background: #fff;
    background-image: none !important;
    /* Text on the left */
    /* Text on the right */
  }

  /* line 310, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget h4 {
    font-size: 22px;
  }

  /* line 314, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget h3 {
    font-size: 38px;
    line-height: 1.11;
    letter-spacing: normal;
  }

  /* line 320, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .content-container {
    margin-top: -30px;
  }

  /* line 324, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .jumbo-image-container,
  .jumbotron-widget .content-container {
    max-width: 100%;
  }

  /* line 330, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  /* line 336, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget.align-right .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 341, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .text {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px !important;
  }

  /* line 347, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .image-style-full-width {
    background: #fff;
    background-image: none !important;
  }

  /* line 352, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .icon {
    font-size: 80px;
  }

  /* line 356, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .icon-hae-logo:before {
    width: 162px;
    height: 162px;
    margin-bottom: 20px;
  }

  /* line 362, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .content-container {
    position: relative;
    padding: 40px;
    width: 100%;
    min-height: 360px;
    z-index: 1;
  }

  /* line 371, resources/assets/styles/widgets/_jumbotron.scss */

  .jumbotron-widget .jumbo-image-container {
    min-height: 0;
    height: auto;
    height: 60vh;
    opacity: 1;
  }

  /* line 380, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget {
    background: transparent;
  }

  /* line 383, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .content-container {
    padding: 10px 40px 50px;
    background: #fff;
  }

  /* line 387, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .content-container .text {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #4a4a4a;
    margin-bottom: 20px !important;
  }

  /* line 399, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .content-container i.icon {
    line-height: 1.6;
  }

  /* line 404, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .jumbo-image-container {
    padding: 30px 40px 40px;
    display: block;
    min-height: 0 !important;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  /* line 421, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .jumbo-image-container {
    padding: 30px 40px 20px;
  }

  /* line 424, resources/assets/styles/widgets/_jumbotron.scss */

  .newsletter .jumbotron-widget .content-container {
    margin: 0;
  }
}

/* line 1, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel {
  border: solid 1px #4a4a4a;
  padding: 55px 80px 30px;
  position: relative;
  margin-top: 40px;
  overflow: visible;
}

/* line 9, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel:after {
  content: ' ';
  position: absolute;
  background-color: #fcf5f9;
  z-index: -1;
  border: 10px solid #ffffff;
  border-bottom: 0;
  top: 0px;
  left: 0px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

/* line 22, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel h3 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: center;
  color: #c80205;
}

/* line 27, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel .text {
  display: block;
  margin: 0 auto 10px;
  font-family: "Oxygen", sans-serif;
  font-size: 22px;
  line-height: 1.32;
  text-align: center;
  color: #5a5a5a;
}

@media screen and (min-width: 480px) {
  /* line 27, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel .text {
    width: 70%;
    min-width: 300px;
  }
}

/* line 37, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel .text:before {
  content: "\AB";
}

/* line 41, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel .text:after {
  content: "\BB";
}

/* line 48, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel .name {
  font-family: "Oxygen", sans-serif;
  font-size: 22px;
  line-height: 1.32;
  text-align: center;
  font-size: 22px;
  font-weight: 300;
}

/* line 54, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel .tns-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 58, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel .tns-outer .tns-controls {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  text-align: center;
  display: none;
}

/* line 64, resources/assets/styles/widgets/_testimonials.scss */

.testimonials-carousel .tns-outer .tns-nav {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  width: 100%;
}

/* line 78, resources/assets/styles/widgets/_testimonials.scss */

.pharmacy-testimonials .testimonials-carousel {
  margin-top: 80px;
}

/* line 84, resources/assets/styles/widgets/_testimonials.scss */

.line-background .testimonials-carousel {
  margin-bottom: 40px;
}

/* Nested Testimonial Carousel */

/* line 92, resources/assets/styles/widgets/_testimonials.scss */

.testimonial-slider-item {
  display: none;
}

/* line 95, resources/assets/styles/widgets/_testimonials.scss */

.testimonial-slider-item * {
  opacity: 0;
}

/* line 100, resources/assets/styles/widgets/_testimonials.scss */

.testimonial-slider-item.active-item {
  display: block;
}

/* line 103, resources/assets/styles/widgets/_testimonials.scss */

.testimonial-slider-item.active-item * {
  opacity: 1;
}

/* line 110, resources/assets/styles/widgets/_testimonials.scss */

.testimonial-nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 30px auto 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  left: 0;
  right: 0;
}

/* line 120, resources/assets/styles/widgets/_testimonials.scss */

.testimonial-nav .testimonial-dot {
  display: block;
  border: 2px solid #000000;
  position: relative;
  width: 15px;
  height: 15px;
  margin: 0 5px;
}

/* line 128, resources/assets/styles/widgets/_testimonials.scss */

.testimonial-nav .testimonial-dot span {
  display: none;
}

/* line 134, resources/assets/styles/widgets/_testimonials.scss */

.testimonial-nav .testimonial-dot.active:after,
.testimonial-nav .testimonial-dot:hover:after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  content: ' ';
  display: block;
  background-color: #c80205;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 159, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel.widget {
    max-width: 868px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1023px) {
  /* line 168, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel.widget {
    max-width: 690px;
    border: solid 1px #4a4a4a;
    padding: 40px;
    position: relative;
    margin-top: 40px;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
  }

  /* line 179, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel .text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media screen and (max-width: 480px) {
  /* line 188, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel {
    padding: 55px 10px 30px;
  }

  /* line 191, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel h3 {
    font-size: 32px;
  }

  /* line 195, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel .text {
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    color: #5a5a5a;
    max-width: 320px;
    width: 100% !important;
    min-width: 10px !important;
  }

  /* line 209, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel.widget {
    overflow: visible;
  }

  /* line 215, resources/assets/styles/widgets/_testimonials.scss */

  section#testimonials .kc_column,
  section#testimonials .kc_column_inner {
    padding-right: 0;
    padding-left: 0;
  }

  /* line 220, resources/assets/styles/widgets/_testimonials.scss */

  section#testimonials .testimonials-carousel {
    max-width: 868px;
    margin: auto;
    margin-right: 15px;
  }

  /* line 225, resources/assets/styles/widgets/_testimonials.scss */

  section#testimonials .testimonials-carousel:after {
    content: '';
    margin: 15px 0 0 15px;
    border: none;
    height: calc(100% + 5px);
  }

  /* line 236, resources/assets/styles/widgets/_testimonials.scss */

  section#testimonials .testimonials-carousel {
    margin-top: -76px;
    padding-bottom: 45px;
  }

  /* line 240, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel.widget:before {
    content: "";
    display: block;
    width: 1px;
    height: 90px;
    background: black;
    position: absolute;
    bottom: -64px;
    margin: auto;
    left: 0;
    right: 0;
  }

  /* line 253, resources/assets/styles/widgets/_testimonials.scss */

  section#testimonials.line-background:before {
    height: calc(100% + 60px) !important;
  }

  /* line 257, resources/assets/styles/widgets/_testimonials.scss */

  .testimonials-carousel .tns-outer .tns-nav {
    right: -1px;
  }

  /* line 260, resources/assets/styles/widgets/_testimonials.scss */

  section#testimonials.line-background:before {
    display: none !important;
  }
}

/* line 3, resources/assets/styles/widgets/_services_hub.scss */

.single-item .bg-image {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-color: #ececec;
}

/* line 17, resources/assets/styles/widgets/_services_hub.scss */

.single-item:hover .bg-image {
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* line 28, resources/assets/styles/widgets/_services_hub.scss */

.single-item.preview-service-item .bg-image {
  z-index: 0;
}

/* line 35, resources/assets/styles/widgets/_services_hub.scss */

.icon-heading-wrap2 .read-more-click-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

/* line 43, resources/assets/styles/widgets/_services_hub.scss */

.icon-heading-wrap2 .read-more-click-area span {
  display: none;
}

/* line 50, resources/assets/styles/widgets/_services_hub.scss */

.icon-heading-wrap .read-more-click-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

/* line 58, resources/assets/styles/widgets/_services_hub.scss */

.icon-heading-wrap .read-more-click-area span {
  display: none;
}

/* line 65, resources/assets/styles/widgets/_services_hub.scss */

img.hidden {
  visibility: hidden;
}

/* line 70, resources/assets/styles/widgets/_services_hub.scss */

.img-wrap {
  z-index: 2;
}

/* line 75, resources/assets/styles/widgets/_services_hub.scss */

.img-wrap-border img {
  visibility: hidden;
}

/* line 81, resources/assets/styles/widgets/_services_hub.scss */

.hub-widget .single-item .img-wrap {
  border: 5px solid transparent;
}

/* line 85, resources/assets/styles/widgets/_services_hub.scss */

.hub-widget .single-item.preview-service-item {
  border-radius: 200px 200px 0 0;
}

/* line 88, resources/assets/styles/widgets/_services_hub.scss */

.hub-widget .single-item.preview-service-item .img-wrap img {
  z-index: 0;
}

/* line 95, resources/assets/styles/widgets/_services_hub.scss */

.load-more-button {
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  height: auto;
  overflow: hidden;
}

/* line 104, resources/assets/styles/widgets/_services_hub.scss */

.load-more-button.hide-load-more {
  height: 0;
}

/* line 110, resources/assets/styles/widgets/_services_hub.scss */

.bookable-services .icon-container {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  /* line 110, resources/assets/styles/widgets/_services_hub.scss */

  .bookable-services .icon-container {
    padding-left: 0;
    text-align: center;
    padding-right: 0;
    margin: 0 auto;
  }
}

/* line 122, resources/assets/styles/widgets/_services_hub.scss */

.bookable-services .icon-container .icon {
  font-size: 200px;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 130, resources/assets/styles/widgets/_services_hub.scss */

  .service-row {
    background: #ffffff;
  }
}

@media screen and (max-width: 1023px) {
  /* line 138, resources/assets/styles/widgets/_services_hub.scss */

  .bookable-services .icon-container .icon {
    font-size: 160px;
  }
}

@media screen and (max-width: 989px) {
  /* line 144, resources/assets/styles/widgets/_services_hub.scss */

  .services-hub-wrapper {
    margin: 0 -15px;
  }
}

/* line 1, resources/assets/styles/widgets/_cta_block.scss */

.cta_block-widget {
  border: solid 1px #4a4a4a;
  padding: 50px 80px 50px;
  position: relative;
  background: #fff;
}

/* line 7, resources/assets/styles/widgets/_cta_block.scss */

.cta_block-widget:after {
  content: ' ';
  position: absolute;
  margin-top: 12px;
  margin-left: 12px;
  border-bottom: 0;
  background-color: rgba(200, 2, 5, 0.05);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* line 24, resources/assets/styles/widgets/_cta_block.scss */

.cta_block-widget .icon {
  color: #c80205;
  font-size: 75px;
  line-height: 75px;
  z-index: 2;
  position: relative;
}

/* line 31, resources/assets/styles/widgets/_cta_block.scss */

.cta_block-widget .icon:before {
  top: -10px;
  position: relative;
}

/* line 37, resources/assets/styles/widgets/_cta_block.scss */

.cta_block-widget h2 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: center;
  color: #c80205;
  margin: 15px 0;
  z-index: 2;
  position: relative;
}

/* line 45, resources/assets/styles/widgets/_cta_block.scss */

.cta_block-widget .text {
  display: block;
  margin: 0 auto 20px;
  font-family: "Oxygen", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
  position: relative;
}

@media screen and (min-width: 480px) {
  /* line 45, resources/assets/styles/widgets/_cta_block.scss */

  .cta_block-widget .text {
    line-height: 1.4;
    width: 70%;
    min-width: 300px;
  }
}

/* line 60, resources/assets/styles/widgets/_cta_block.scss */

.cta_block-widget a.btn {
  z-index: 2;
  position: relative;
  background-color: rgba(200, 2, 5, 0.2);
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 78, resources/assets/styles/widgets/_cta_block.scss */

  .cta_block-widget h2 {
    font-size: 38px;
  }

  /* line 82, resources/assets/styles/widgets/_cta_block.scss */

  .cta_block-widget .icon {
    font-size: 50px;
    line-height: 0px;
  }
}

@media screen and (max-width: 480px) {
  /* line 96, resources/assets/styles/widgets/_cta_block.scss */

  .cta_block-widget {
    padding: 30px 30px 50px;
    margin-right: 15px;
  }

  /* line 100, resources/assets/styles/widgets/_cta_block.scss */

  .cta_block-widget:after {
    content: '';
    position: absolute;
    margin-top: 15px;
    margin-left: 15px;
  }

  /* line 107, resources/assets/styles/widgets/_cta_block.scss */

  .cta_block-widget .icon {
    font-size: 60px;
  }
}

/* line 1, resources/assets/styles/widgets/_heading.scss */

.main-header-wrap {
  margin-top: 200px;
}

/* line 6, resources/assets/styles/widgets/_heading.scss */

.child-site .main-header-wrap {
  margin-top: 200px;
}

/* line 11, resources/assets/styles/widgets/_heading.scss */

.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 15, resources/assets/styles/widgets/_heading.scss */

.headline h2,
.headline .main-heading {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* line 19, resources/assets/styles/widgets/_heading.scss */

.headline h4,
.headline .overline {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 23, resources/assets/styles/widgets/_heading.scss */

.headline h5,
.headline .subline {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

/* line 32, resources/assets/styles/widgets/_heading.scss */

.heading-widget .headline h2,
.heading-widget .headline .main-heading {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 55px;
  font-weight: bold;
  line-height: 1.56;
  text-align: center;
  color: #c80205;
  line-height: normal;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* line 39, resources/assets/styles/widgets/_heading.scss */

.heading-widget .headline h4,
.heading-widget .headline .overline {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 1px;
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: normal;
  text-transform: uppercase;
}

/* line 51, resources/assets/styles/widgets/_heading.scss */

.heading-widget .headline h5,
.heading-widget .headline .subline {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  font-family: "Oxygen", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.56;
  text-align: left;
  font-weight: bold;
}

/* line 58, resources/assets/styles/widgets/_heading.scss */

.heading-widget .heading-excerpt {
  font-family: "Oxygen", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  margin: 20px auto;
}

@media screen and (max-width: 767px) {
  /* line 58, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .heading-excerpt {
    padding: 0 15px;
  }
}

/* line 70, resources/assets/styles/widgets/_heading.scss */

.two-columned-article .heading-widget .headline *,
.two-columned-article .heading-widget .headline {
  text-align: left;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 81, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline .main-heading {
    font-size: 45px;
  }

  /* line 85, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline .overline {
    font-size: 28px;
  }
}

/* line 93, resources/assets/styles/widgets/_heading.scss */

h1 br,
h2 br,
h3 br {
  display: none;
}

/* line 101, resources/assets/styles/widgets/_heading.scss */

.two-columned-article .heading-widget * {
  text-align: left;
}

/* line 110, resources/assets/styles/widgets/_heading.scss */

.map-row-container + section:not(.line-background) {
  margin-top: 100px;
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  /* line 122, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline .main-heading {
    font-size: 42px;
  }

  /* line 126, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline .overline {
    font-size: 28px;
  }

  /* line 131, resources/assets/styles/widgets/_heading.scss */

  .main-header-wrap {
    margin-top: 160px;
    padding: 0 40px;
  }
}

@media screen and (max-width: 767px) {
  /* line 144, resources/assets/styles/widgets/_heading.scss */

  .two-columned-article .heading-widget .headline .main-heading {
    padding: 0;
  }

  /* line 151, resources/assets/styles/widgets/_heading.scss */

  .heading-widget {
    padding: 0px 0 20px !important;
  }

  /* line 154, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline {
    margin: 0;
    padding: 20px 10px;
  }

  /* line 158, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline .main-heading {
    font-size: 33px;
    font-family: "Demos Next W01 Medium", serif;
    line-height: 1.12;
    padding: 0 30px;
  }

  /* line 165, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline .overline,
  .heading-widget .headline h4 {
    font-size: 20px;
  }

  /* line 171, resources/assets/styles/widgets/_heading.scss */

  .main-header-wrap {
    margin-top: 100px;
    padding: 0 40px;
  }

  /* line 175, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline .main-heading {
    font-size: 32px;
    padding: 0 10px;
  }

  /* line 180, resources/assets/styles/widgets/_heading.scss */

  .child-site .main-header-wrap {
    margin-top: 100px;
  }
}

@media screen and (max-width: 376px) {
  /* line 188, resources/assets/styles/widgets/_heading.scss */

  .heading-widget .headline .overline,
  .heading-widget .headline h4 {
    padding: 0 25px;
  }

  /* line 191, resources/assets/styles/widgets/_heading.scss */

  .main-header-wrap {
    margin-top: 100px;
    padding: 0 0;
  }
}

/* line 1, resources/assets/styles/widgets/_specials_carousel.scss */

.special-description {
  margin-bottom: 20px;
}

/* line 7, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .tns-controls {
  display: none;
}

/* line 11, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget table {
  width: 100%;
}

/* line 14, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget table tbody {
  width: 100%;
}

/* line 19, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget table + hr {
  margin-top: 10px;
}

/* line 26, resources/assets/styles/widgets/_specials_carousel.scss */

.disclaimer {
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  line-height: 1.17;
  letter-spacing: 0.2px;
  text-align: left;
  color: #4a4a4a;
  font-style: italic;
}

/* line 36, resources/assets/styles/widgets/_specials_carousel.scss */

.disclaimer .company-name {
  font-weight: bold;
  font-style: normal;
  margin-bottom: 3px;
}

/* line 44, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget {
  position: relative;
  border: 1px solid;
  overflow: hidden;
}

/* line 50, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .tns-outer .tns-controls {
  text-align: center;
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 20;
}

/* line 58, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .tns-outer .tns-nav {
  top: 40px;
}

/* line 63, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item {
  background: #eeeff3;
}

/* line 66, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item .img-wrap {
  min-height: 580px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 74, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item .img-wrap img {
  height: 110%;
  width: auto;
  display: block;
  position: absolute;
}

/* line 82, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
  color: #000000;
  text-transform: uppercase;
  font-family: "Oxygen-bold", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.26;
  letter-spacing: normal;
  text-align: left;
  border-bottom: 1px solid #4a4a4a;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 42px;
}

/* line 99, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item hr {
  border-bottom: 1px solid #4a4a4a;
  border-top: none;
  background: transparent;
  margin: 15px 0 15px;
}

/* line 106, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item h3 + hr {
  margin: 26px 0 15px;
}

/* line 110, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item h2 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  color: #c80205;
}

/* line 115, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item h4 {
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.38;
  letter-spacing: 0.3px;
  text-align: left;
  color: #000000;
  font-size: 28px;
  text-transform: uppercase;
}

/* line 128, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item tr {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 136, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item span,
.specials_carousel-widget .item strong,
.specials_carousel-widget .item b {
  color: #c80205;
  font-weight: bold;
  font-size: 32px;
}

/* line 143, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item .offer {
  width: 50%;
}

/* line 147, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item .price-big {
  font-family: Oxygen, sans-serif;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.21;
  letter-spacing: 0.6px;
  text-align: right;
  color: #c80205;
  width: 20%;
  min-width: 50px !important;
}

/* line 161, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item .statt {
  font-family: Oxygen, sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.89;
  letter-spacing: 0.4px;
  text-align: right;
  color: #c80205;
  width: 15%;
}

/* line 174, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item .price-small {
  font-family: Oxygen, sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.89;
  letter-spacing: 0.4px;
  text-align: right;
  color: #c80205;
  width: 15%;
}

/* line 187, resources/assets/styles/widgets/_specials_carousel.scss */

.specials_carousel-widget .item .content-container {
  padding: 80px 40px 40px;
}

/* line 193, resources/assets/styles/widgets/_specials_carousel.scss */

.offer {
  text-align: left;
}

/* line 196, resources/assets/styles/widgets/_specials_carousel.scss */

.offer a {
  color: #4a4a4a;
}

/* line 199, resources/assets/styles/widgets/_specials_carousel.scss */

.offer a:hover {
  color: #4a4a4a;
}

/* line 205, resources/assets/styles/widgets/_specials_carousel.scss */

.price-big {
  min-width: 100px;
  text-align: center;
}

/* Specials carousel on Child templates / KC "Include" widgets */

/* line 242, resources/assets/styles/widgets/_specials_carousel.scss */

section.widget.heading-widget.text-center {
  background: #fff !important;
  margin: 0;
  padding: 40px 0 40px;
}

@media screen and (min-width: 1366px) and (max-width: 1440px) {
  /* line 250, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item td:first-child {
    min-width: 40%;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 258, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget {
    max-width: 868px;
    margin: auto;
  }

  /* line 262, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item td:first-child {
    min-width: 40%;
  }
}

@media screen and (max-width: 1100px) {
  /* line 270, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .content-container {
    padding: 40px;
  }

  /* line 273, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .content-container .offer {
    width: 100% !important;
    display: inline-block;
    text-align: left !important;
  }

  /* line 280, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .content-container .price-big,
  .specials_carousel-widget .content-container .price-small,
  .specials_carousel-widget .content-container .statt {
    width: 33% !important;
    display: inline-block !important;
    text-align: center !important;
    padding-top: 15px !important;
    line-height: 20px;
    min-width: 20px;
    padding-top: 15px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 295, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item td:first-child {
    min-width: 40%;
  }

  /* line 299, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget {
    max-width: 680px;
    margin: 0px auto;
  }

  /* line 303, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item .img-wrap {
    min-height: 60vh;
    max-height: 500px;
  }

  /* line 308, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .tns-outer .tns-nav {
    top: 640px;
  }

  /* line 314, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item td span,
  .specials_carousel-widget .item td strong,
  .specials_carousel-widget .item td b {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  /* line 321, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget {
    margin: 0px auto;
  }

  /* line 326, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .tns-outer .tns-nav {
    top: 400px;
  }

  /* line 331, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item tr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 15px;
  }

  /* line 336, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item td {
    width: 90px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    white-space: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  /* line 344, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item td:first-child {
    max-width: 120px;
    padding-right: 10px;
    width: 100%;
    min-width: 100%;
  }

  /* line 351, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item td:nth-child(4) {
    width: auto;
  }

  /* line 362, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item .content-container {
    font-size: 16px;
  }

  /* line 366, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item h3 {
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 26px;
  }

  /* line 372, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item h4 {
    font-size: 22px;
  }

  /* line 376, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .item .img-wrap {
    min-height: 375px;
    height: 375px;
    max-height: 375px;
  }

  /* line 386, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .content-container .price-big {
    text-align: left !important;
  }

  /* line 390, resources/assets/styles/widgets/_specials_carousel.scss */

  .specials_carousel-widget .content-container .price-small {
    text-align: right !important;
  }
}

/* line 1, resources/assets/styles/widgets/_featured_page.scss */

.no-circle-border .img-wrap {
  border: 0 !important;
}

/* line 5, resources/assets/styles/widgets/_featured_page.scss */

.img-wrap {
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
}

/* line 13, resources/assets/styles/widgets/_featured_page.scss */

.browser-internet-explorer .featured-page-heading-group {
  display: block;
}

/* line 18, resources/assets/styles/widgets/_featured_page.scss */

.featured-page-heading-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 20px;
}

/* line 25, resources/assets/styles/widgets/_featured_page.scss */

.featured-page-heading-group h4 {
  color: #4a4a4a;
}

/* line 30, resources/assets/styles/widgets/_featured_page.scss */

.featured-page-heading-group .img-wrap {
  border-radius: 50%;
  min-height: 160px;
  min-width: 160px;
  max-width: 160px;
  max-height: 160px;
  height: 160px;
  width: 160px;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  background-position: center center;
  background-size: cover;
  margin-left: 0;
}

/* line 48, resources/assets/styles/widgets/_featured_page.scss */

.featured-page-heading-group .img-wrap img {
  max-width: 160px;
  height: 100%;
  width: auto;
  display: block;
}

/* line 61, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .img-wrap {
  border-radius: 50%;
  height: 540px;
  width: 540px;
  position: relative;
  overflow: hidden;
  border: 2px solid;
}

/* line 70, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .img-wrap img {
  height: 100%;
  width: auto;
  display: block;
  visibility: hidden;
}

/* line 80, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget.align-right .content-container {
  padding: 0px 40px 0 0;
}

/* line 85, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container {
  padding: 0px 0 0px 40px;
}

/* line 88, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container * {
  max-width: 100%;
}

/* line 92, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container .tags {
  padding-bottom: 12px;
}

/* line 96, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container i.icon.icon-auf_dem_punkt {
  color: #c80205;
  margin-right: 3px;
}

/* line 101, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container h3 {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  font-weight: bold;
  padding-right: 60px;
  line-height: 1.05;
}

/* line 108, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container h4 {
  font-family: "Oxygen", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
  text-transform: unset;
  font-size: 20px;
}

/* line 117, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container .red-theme {
  color: #c80205 !important;
}

/* line 121, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container .text {
  font-family: "Oxygen", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.29;
  text-align: left;
  max-width: 506px;
  width: 100%;
}

/* line 125, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container .text p {
  font-size: 17px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
}

/* line 134, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container p {
  color: #4a4a4a;
}

/* line 137, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget .content-container p strong {
  font-size: 18px;
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
}

/* line 152, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget.featured_link .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 158, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget.featured_link .content-container .featured-page-heading-group {
  margin-bottom: 20px;
}

/* line 162, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget.featured_link .content-container h4 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
  margin-bottom: 0;
  font-size: 26px;
}

@media screen and (min-width: 769px) {
  /* line 173, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget.content-align-right .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* line 179, resources/assets/styles/widgets/_featured_page.scss */

.featured_page-widget.content-align-right .content-container {
  padding: 0px 40px;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 189, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .img-wrap {
    height: 429px;
    width: 429px;
  }

  /* line 195, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container h3 {
    font-size: 28px;
    padding-right: 0;
  }
}

@media screen and (max-width: 1023px) {
  /* line 207, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .img-wrap {
    height: 302px;
    width: 302px;
    margin: 0 auto 40px;
    background-color: #ededed;
  }

  /* line 215, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container {
    padding: 50px 30px;
    background: #fff;
  }

  /* line 221, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .featured-page-heading-group .img-wrap {
    margin: 0 20px 0px 0;
  }
}

@media screen and (max-width: 767px) {
  /* line 234, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container {
    padding: 30px;
    background: #fff;
  }

  /* line 238, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container .img-wrap {
    height: 302px;
    width: 302px;
    margin: 0 auto 50px;
    background-color: #ededed;
  }

  /* line 245, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container .featured-page-heading-group {
    display: block;
  }

  /* line 251, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container h4 {
    font-size: 20px;
    padding-right: 0;
  }

  /* line 257, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container h3 {
    font-size: 36px;
  }

  /* line 261, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container p {
    margin-bottom: 20px;
    line-height: 22px;
  }

  /* line 269, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .img-wrap {
    width: 302px;
    height: 302px;
    margin: auto;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  /* line 280, resources/assets/styles/widgets/_featured_page.scss */

  .featured-page-heading-group {
    margin: 0;
  }

  /* line 283, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget .content-container h3 {
    font-size: 36px;
    padding: 0;
  }

  /* line 288, resources/assets/styles/widgets/_featured_page.scss */

  .featured-page-heading-group .headline {
    padding: 0;
  }

  /* line 292, resources/assets/styles/widgets/_featured_page.scss */

  .featured_page-widget.align-right .content-container {
    padding: 0px 40px 0 0;
    padding: 30px;
  }
}

/* line 1, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.slider-items {
  overflow: hidden;
}

/* line 5, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget {
  overflow: hidden;
}

/* line 8, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .slider-items {
  background: #fff;
}

/* line 13, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .tns-outer .tns-nav,
.pharmacy_carousel-widget .tns-outer .tns-controls {
  top: 0;
  padding-right: 15px;
  padding-left: 35px;
}

/* line 21, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .pharmacy_carousel-item .img-wrap {
  border-radius: 50%;
  height: 540px;
  width: 540px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/* line 29, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .pharmacy_carousel-item .img-wrap img {
  height: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* line 38, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .pharmacy_carousel-item .content-container {
  padding: 40px 20px 0 40px;
}

/* line 41, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .pharmacy_carousel-item .content-container .tags {
  margin-bottom: 20px;
}

/* line 45, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .pharmacy_carousel-item .content-container h4 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
  color: #4a4a4a;
  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-line-pack: center;
      align-content: center;
  /*  @media screen and (min-width: 1024px) {
            text-transform: uppercase;
          }*/
}

/* line 53, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .pharmacy_carousel-item .content-container h4 span {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1023px) {
  /* line 64, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container h4 .icon {
    font-size: 40px;
  }
}

/* line 71, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .pharmacy_carousel-item .content-container .icon-wrap {
  float: left;
  margin-left: -50px;
  font-size: 32px;
}

/* line 77, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .pharmacy_carousel-item .content-container p {
  color: #4a4a4a;
}

/* line 83, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget h3 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: center;
  color: #c80205;
  text-align: left;
  margin-bottom: 15px;
}

/* line 89, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget h3:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* line 93, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget h3:hover a {
  text-decoration: none;
}

/* line 99, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .text {
  display: block;
  margin: 0 auto 10px;
  font-family: "Oxygen", sans-serif;
  font-size: 22px;
  line-height: 1.32;
  text-align: center;
  width: 70%;
  min-width: 300px;
}

/* line 106, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .text p {
  color: #4a4a4a;
}

/* line 111, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .name {
  font-family: "Oxygen", sans-serif;
  font-size: 22px;
  line-height: 1.32;
  text-align: center;
  font-size: 22px;
  font-weight: 300;
}

/* line 117, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .calender-link {
  font-family: "Oxygen", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  text-transform: uppercase;
  position: relative;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 130, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.pharmacy_carousel-widget .calender-link .icon {
  font-size: 45px;
  margin-right: 15px;
}

@media screen and (min-width: 1024px) {
  /* line 137, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy-specs {
    font-size: 18px;
  }
}

/* line 143, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.buttons-row {
  padding-bottom: 40px;
}

/* line 146, resources/assets/styles/widgets/_pharmacy_carousel.scss */

.buttons-row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 164, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .img-wrap {
    height: 430px;
    width: 430px;
  }

  /* line 169, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item h3 {
    font-size: 33px;
  }

  /* line 173, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container h4 {
    font-size: 26px;
  }

  /* line 177, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item a.calender-link {
    text-align: right !important;
    padding-right: 30px !important;
  }

  /* line 181, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item a.calender-link i.icon {
    font-size: 35px;
    position: relative;
    left: 0px;
  }

  /* line 190, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container {
    padding: 40px 20px 0 30px;
  }

  /* line 193, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container i.icon.icon-compass {
    font-size: 40px;
  }

  /* line 197, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container .tag {
    font-size: 15px;
  }

  /* line 201, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container .pharmacists {
    padding-bottom: 20px !important;
  }

  /* line 206, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container .time-dates .icon-wrap {
    float: left;
    margin-left: -34px;
    font-size: 16px;
  }

  /* line 211, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container .time-dates .icon-wrap i.icon.icon-compass {
    font-size: 24px;
  }

  /* line 217, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .tns-outer .tns-nav,
  .pharmacy_carousel-widget .tns-outer .tns-controls {
    top: 0;
    padding-right: 5px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 230, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .img-wrap {
    height: 302px;
    width: 302px;
    max-width: 100%;
    margin: 0 auto 40px;
  }

  /* line 237, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container {
    padding: 50px 40px 40px;
    background-color: #fff;
  }

  /* line 241, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container .icon-wrap {
    display: none;
  }

  /* line 247, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item a.calender-link span {
    display: inline-block;
    top: 12px;
    position: relative;
  }

  /* line 253, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item a.calender-link i.icon {
    position: relative;
  }

  /* line 260, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .tns-outer .tns-nav {
    right: 0;
    position: absolute;
    top: 360px !important;
    padding-left: 15px;
    z-index: 10;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  /* line 279, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .tns-outer .tns-nav {
    background-color: #fff;
    padding: 15px 0 0;
  }

  /* line 285, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .img-wrap {
    height: 302px;
    width: 302px;
    margin: 0 auto 20px;
  }

  /* line 292, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item a.calender-link span {
    display: inline-block;
    top: 12px;
    position: relative;
  }

  /* line 298, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item a.calender-link i.icon {
    position: relative;
  }

  /* line 304, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .pharmacy-specs .pharmacists {
    padding-bottom: 30px !important;
  }

  /* line 308, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .pharmacy-specs .time-dates {
    display: none;
  }

  /* line 315, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container h4 {
    font-size: 20px;
  }

  /* line 319, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container h3 {
    font-size: 38px;
  }

  /* line 323, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container a.calender-link i.icon {
    font-size: 46px;
  }

  /* line 330, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .tns-outer .tns-nav {
    right: 0;
    position: absolute;
    top: 320px !important;
    z-index: 10;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  /* line 340, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .tns-outer .tns-controls {
    padding-right: 45px;
  }
}

@media screen and (max-width: 767px) and (max-width: 599px) {
  /* line 340, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .tns-outer .tns-controls {
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  /* line 349, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .content-container {
    background-color: #fff;
    padding: 40px 20px 0;
    margin-bottom: 50px;
  }

  /* line 355, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .pharmacy_carousel-item .img-wrap {
    margin: 0 auto 30px;
  }

  /* line 360, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget .content-container p {
    line-height: 1.25;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  /* line 374, resources/assets/styles/widgets/_pharmacy_carousel.scss */

  .pharmacy_carousel-widget h3 {
    font-size: 32px;
  }
}

/* line 1, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-wrap {
  position: relative;
  overflow: hidden;
}

/* line 4, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-wrap:before {
  background: rgba(200, 2, 5, 0.7);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* line 10, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-wrap i.icon {
  color: #ffffff;
  height: 200px;
  width: 200px;
  position: absolute;
  top: -20px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  font-size: 200px;
  display: block;
  line-height: 0;
  text-align: center;
}

/* line 27, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-info {
  background: #fcf5f9;
  border: 2px solid #c80205;
  position: relative;
  max-width: 360px;
  padding: 50px !important;
  margin-top: -280px;
  float: right;
}

/* line 35, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-info i.icon {
  font-size: 34px;
}

/* line 37, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-info i.icon.icon-compass {
  font-size: 38px;
}

/* line 42, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-info .row {
  margin-bottom: 20px;
  line-height: 1.7em;
}

/* line 47, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-info a.btn {
  border: none;
  padding: 0;
}

/* line 48, resources/assets/styles/widgets/_apotheke_maps.scss */

.map-info a.btn .row {
  margin-bottom: 0;
}

/* line 3, resources/assets/styles/widgets/_feature_link.scss */

.featured_link.align-right .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: left;
}

/* line 8, resources/assets/styles/widgets/_feature_link.scss */

.featured_link.align-right .img-wrap {
  margin-left: 40px;
}

/* line 12, resources/assets/styles/widgets/_feature_link.scss */

.featured_link .img-wrap {
  margin-right: 40px;
}

/* line 16, resources/assets/styles/widgets/_feature_link.scss */

.featured_link .text {
  margin-bottom: 15px;
}

@media screen and (max-width: 1023px) and (min-width: 769px) {
  /* line 24, resources/assets/styles/widgets/_feature_link.scss */

  .featured_link {
    padding: 0 30px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 29, resources/assets/styles/widgets/_feature_link.scss */

  .featured_link .content-container {
    background-color: #fff;
    padding: 30px;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  /* line 29, resources/assets/styles/widgets/_feature_link.scss */

  .featured_link .content-container {
    padding: 30px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 38, resources/assets/styles/widgets/_feature_link.scss */

  .featured_link.align-right .img-wrap {
    float: none;
    margin: 0px auto 40px;
  }
}

/* line 3, resources/assets/styles/widgets/_filters.scss */

.map-filter-row {
  margin-top: 20px;
}

/* line 8, resources/assets/styles/widgets/_filters.scss */

.jobs-widget .apotheke-filter {
  max-width: 100%;
  padding: 0 65px;
}

/* line 14, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter {
  max-width: 940px;
  margin-bottom: 20px;
}

/* line 18, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter-heading {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 290px;
  margin: 0 auto 10px;
  font-weight: 400;
  color: #000000;
}

/* line 30, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter-heading .icon {
  margin: 0 10px 0 0;
  font-size: 30px;
  font-weight: bold;
}

/* line 36, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter-heading .heading-text {
  font-family: "Oxygen", sans-serif;
}

/* line 41, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter {
  width: 100%;
  border: 2px solid #000000;
  display: block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding: 0;
  cursor: pointer;
  height: auto;
  min-height: 36px;
  max-width: 290px;
  position: absolute;
  margin: 0 auto;
  z-index: 3000;
  left: 0px;
  right: 0;
  top: 0;
  max-height: 290px;
  overflow: auto;
  /*&:hover,*/
}

/* line 63, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter .filter-item {
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0px 10px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  background-color: #ffffff;
  list-style-type: none;
  margin: 0;
  display: block;
  border-bottom: 0px solid #ccc;
  font-size: 16px;
  font-family: "Oxygen", sans-serif;
  line-height: 1;
  color: #000000;
  height: 0;
  max-height: 35px;
  overflow: hidden;
}

/* line 84, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter .filter-item:not(:first-child).hidden {
  display: none;
}

/* line 89, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter .filter-item:hover {
  background-color: #eee;
}

/* line 93, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter .filter-item.active {
  height: auto;
  padding: 7px 10px;
  border-bottom: 0px solid #ccc;
}

/* line 100, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter .filter-item:hover:before {
  background: #c80205 !important;
}

/* line 106, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter.active {
  height: auto;
}

/* line 109, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter.active .filter-item {
  display: block;
}

/* line 115, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter-column {
  position: relative;
  z-index: 200;
}

/* line 119, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter-column + .filter-column {
  z-index: 100;
}

/* line 122, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter-column + .filter-column + .filter-column {
  z-index: 50;
}

/* line 125, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter-column + .filter-column + .filter-column + .filter-column {
  z-index: 20;
}

/* line 128, resources/assets/styles/widgets/_filters.scss */

.apotheke-filter .filter-column + .filter-column + .filter-column + .filter-column + .filter-column {
  z-index: 10;
}

/* line 138, resources/assets/styles/widgets/_filters.scss */

.intro-text p {
  font-size: 20px;
}

/* line 143, resources/assets/styles/widgets/_filters.scss */

.drop-down-container {
  position: relative;
  z-index: 3000;
  min-height: 36px;
  max-width: 290px;
  margin: 0 auto 40px;
  cursor: pointer;
  /*  &:hover , */
}

/* line 151, resources/assets/styles/widgets/_filters.scss */

.drop-down-container * {
  pointer-events: none;
}

/* line 156, resources/assets/styles/widgets/_filters.scss */

.drop-down-container:before,
.drop-down-container:after {
  position: absolute;
  color: #ffffff;
  line-height: 33px;
  height: 32px;
  width: 32px;
  background-color: #f27b13;
  right: 2px;
  top: 2px;
  text-align: center;
  z-index: 3001;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  pointer-events: none;
  content: ' ';
}

/* line 176, resources/assets/styles/widgets/_filters.scss */

.drop-down-container:after {
  background-color: transparent;
  content: '\E814';
  font-family: "fontello", sans-serif;
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  z-index: 3002;
}

/* line 194, resources/assets/styles/widgets/_filters.scss */

.drop-down-container.open * {
  pointer-events: all;
}

/* line 199, resources/assets/styles/widgets/_filters.scss */

.drop-down-container.open:after {
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* line 207, resources/assets/styles/widgets/_filters.scss */

.drop-down-container.open .filter-item {
  height: auto;
  padding: 7px 10px;
  border-bottom: 2px solid #ccc;
}

/* line 212, resources/assets/styles/widgets/_filters.scss */

.drop-down-container.open .filter-item.active {
  border-bottom: 2px solid #ccc;
}

/* line 221, resources/assets/styles/widgets/_filters.scss */

.drop-down-container.red-arrow:before {
  background-color: #c80205;
}

/* line 227, resources/assets/styles/widgets/_filters.scss */

.drop-down-container.green-arrow:before {
  background-color: #00b28e;
}

/* line 232, resources/assets/styles/widgets/_filters.scss */

.drop-down-container.active.open {
  z-index: 3333;
}

/* line 1, resources/assets/styles/widgets/_service_popup.scss */

.pop_box {
  display: none;
  position: absolute;
  width: 100%;
  background: #ccc;
}

/* line 6, resources/assets/styles/widgets/_service_popup.scss */

.pop_box .bg-image {
  display: block;
  height: 400px;
  width: 40%;
  position: absolute;
  right: 0;
  z-index: 0;
  background: #c80205;
  top: 200px;
}

/* line 17, resources/assets/styles/widgets/_service_popup.scss */

.pop_box .content-wrap {
  position: relative;
  max-width: 1240px;
  margin: 40px auto;
  padding: 50px 30px;
  min-height: 560px;
}

/* line 23, resources/assets/styles/widgets/_service_popup.scss */

.pop_box .content-wrap .btn,
.pop_box .content-wrap .comment-form input[type="submit"],
.comment-form .pop_box .content-wrap input[type="submit"] {
  margin-top: 20px;
}

/* line 28, resources/assets/styles/widgets/_service_popup.scss */

.pop_box .content-wrap::before {
  display: block;
  content: "";
  border-left: 5px solid #333;
  border-top: 5px solid #333;
  position: absolute;
  height: 150px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* line 42, resources/assets/styles/widgets/_service_popup.scss */

.pop_box .content-wrap::after {
  display: block;
  content: "";
  border-right: 5px solid #333;
  border-bottom: 5px solid #333;
  position: absolute;
  height: 150px;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

/* line 56, resources/assets/styles/widgets/_service_popup.scss */

.pop_box .main-heading {
  background: #c80205;
  color: #fff;
  padding: 16px 0;
}

/* line 63, resources/assets/styles/widgets/_service_popup.scss */

.pop_box .tags .tag {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 14px;
  line-height: 1.36;
  text-align: center;
  display: inline-block;
  color: #ffffff;
  background-color: #c80205;
  padding: 5px 15px;
  margin-right: 20px;
}

/* line 4, resources/assets/styles/widgets/_staff_members.scss */

.hub-widget.staff-members-widget .heading-widget .main-heading {
  margin-bottom: 0;
}

/* line 11, resources/assets/styles/widgets/_staff_members.scss */

.staff-member-item {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  /* line 15, resources/assets/styles/widgets/_staff_members.scss */

  .staff-member-item > div {
    max-width: 414px;
    margin: 0 auto;
  }
}

/* line 23, resources/assets/styles/widgets/_staff_members.scss */

.staff-members .heading-widget {
  margin-bottom: 0;
}

/* line 29, resources/assets/styles/widgets/_staff_members.scss */

[data-item-count="1"] > .row,
[data-item-count="2"] > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 37, resources/assets/styles/widgets/_staff_members.scss */

.heading-widget .heading-excerpt {
  max-width: 840px;
}

/* line 41, resources/assets/styles/widgets/_staff_members.scss */

.staff-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}

/* line 47, resources/assets/styles/widgets/_staff_members.scss */

.staff-name .overline {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  line-height: 1.39;
  text-align: left;
}

/* line 52, resources/assets/styles/widgets/_staff_members.scss */

.staff-name .name {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  color: #c80205;
}

/* line 58, resources/assets/styles/widgets/_staff_members.scss */

.staff-name .subline {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-family: "Oxygen", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
}

/* line 5, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item .special-thumbnail {
  width: 100%;
  height: 360px;
  border: solid 3px #4a4a4a;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #eeeff3;
}

/* line 17, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item .special-thumbnail img.attachment-post_thumbnail {
  -webkit-transform: scale(0.95);
       -o-transform: scale(0.95);
          transform: scale(0.95);
}

/* line 23, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item .special-label-block {
  width: 90%;
  background: #4a4a4a;
  padding: 20px 40px 20px 20px;
  margin: -50px auto 0;
  z-index: 1;
  color: #ffffff;
  position: relative;
  min-height: 240px;
}

/* line 34, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item .special-label-block h2.item-headline {
  font-family: "Oxygen-bold", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: bold;
}

/* line 46, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item .special-label-block h4.item-subline {
  font-family: "Oxygen-bold", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.22;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/* line 55, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item .special-label-block .item-text {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.29;
  letter-spacing: 0.5px;
}

/* line 63, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item .special-label-block span.read-more-blocks.read-more-specials-blocks {
  color: #fff;
  right: 20px;
  bottom: 15px;
  cursor: pointer;
}

/* line 68, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item .special-label-block span.read-more-blocks.read-more-specials-blocks:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* line 77, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item:hover img.attachment-post_thumbnail {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

/* line 82, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-item.active .special-label-block {
  background: #c80205;
}

/* line 91, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget {
  border: solid 2px #4a4a4a;
  background: #eeeff3;
}

/* line 96, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .product-image-container .img-wrap {
  max-width: 532px;
  max-height: 532px;
  background-position: left center;
  margin: 0;
}

/* line 104, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container {
  padding: 50px 70px 50px 0px;
}

/* line 107, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container .close-button.close-special-preview {
  font-size: 62px;
  color: #000000;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  right: 30px;
  top: 30px;
  text-align: center;
  line-height: 42px;
  cursor: pointer;
}

/* line 122, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 42px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #4a4a4a;
}

/* line 137, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border: 0;
  border-top: 1px solid #4a4a4a;
}

/* line 144, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container h4 {
  font-family: "Oxygen", sans-serif;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.29;
  letter-spacing: 0.4px;
  text-align: left;
  color: #000000;
  text-transform: uppercase;
}

/* line 157, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container td.offer {
  width: 50%;
}

/* line 160, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container td.price-big {
  font-family: "Oxygen", sans-serif;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.21;
  letter-spacing: 0.6px;
  text-align: right;
  color: #c80205;
  width: 20%;
  min-width: 50px !important;
}

/* line 173, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container td.statt {
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.89;
  letter-spacing: 0.4px;
  text-align: right;
  color: #c80205;
  width: 15%;
}

/* line 185, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .specials_carousel-widget .content-container td.price-small {
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.89;
  letter-spacing: 0.4px;
  text-align: right;
  color: #c80205;
  width: 15%;
}

/* line 204, resources/assets/styles/widgets/_specials_hub.scss */

.specials-hub-widget .special-preview.has-content {
  margin-bottom: 40px;
}

/* line 212, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider.is-header {
  padding-top: 175px;
  margin-top: 0;
}

/* line 216, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .tns-controls {
  width: 100px;
  text-align: right;
  position: absolute;
  right: 2%;
  z-index: 99;
  top: 20px;
  font-size: 30px;
}

/* line 226, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .tns-nav {
  width: 38%;
  position: absolute;
  top: 40px;
  right: 7%;
  z-index: 9;
}

/* line 238, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text {
  padding: 40px 60px;
  max-width: 50%;
  z-index: 3;
  position: relative;
  background: #dedee2;
}

/* line 245, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text span.icon.icon-large.icon-aktionen {
  line-height: 150px;
}

/* line 248, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text h2 {
  font-family: "Oxygen", sans-serif;
  font-size: 48px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  text-transform: uppercase;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1em;
}

/* line 261, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.4px;
  text-align: left;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* line 274, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text .item-cta a.btn.expand-special-details {
  color: #000000;
  border-color: #000000;
  margin-top: 25px;
}

/* line 281, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text .item-gallery-nav .gallery-thumbnail {
  margin-right: 10px;
  margin-bottom: 10px;
  border: solid 2px #000000;
  width: 58px;
  height: auto;
  height: 58px;
  overflow: hidden;
}

/* line 292, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text .item-gallery-nav .gallery-thumbnail.active {
  border: solid 2px #c80205;
}

/* line 300, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

/* line 304, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image img {
  width: 640px;
  height: 640px;
}

/* line 314, resources/assets/styles/widgets/_specials_hub.scss */

.specials-header-slider .tns-controls,
.specials-header-slider .tns-nav {
  display: none !important;
}

@media screen and (max-width: 1100px) {
  /* line 330, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-thumbnail {
    height: 300px;
  }

  /* line 332, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-thumbnail img.attachment-post_thumbnail {
    -webkit-transform: scale(0.8);
         -o-transform: scale(0.8);
            transform: scale(0.8);
  }

  /* line 336, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-label-block {
    min-height: 224px;
  }

  /* line 338, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-label-block h2.item-headline {
    font-size: 28px;
  }

  /* line 344, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .content-container {
    padding: 40px;
  }

  /* line 346, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .content-container .offer {
    width: 100%  !important;
    display: inline-block;
    text-align: left !important;
  }

  /* line 352, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .content-container .price-big,
  .specials-hub-widget .specials_carousel-widget .content-container .price-small,
  .specials-hub-widget .specials_carousel-widget .content-container .statt {
    width: 33%  !important;
    display: inline-block;
    text-align: center !important;
    padding-top: 15px;
  }

  /* line 364, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text {
    padding: 40px 40px 40px 60px;
    max-width: 50%;
    z-index: 3;
    position: relative;
    background: #dedee2;
  }

  /* line 371, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .special-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    justify-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 0;
  }

  /* line 379, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .tns-controls {
    width: 12%;
  }

  /* line 382, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .gallery-thumbnail img {
    max-width: 50px;
    height: auto;
    max-height: 50px;
  }

  /* line 390, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider.is-header .container,
  .specials-header-slider.is-header .two-column-carousel .tns-outer,
  .two-column-carousel .specials-header-slider.is-header .tns-outer {
    max-width: 100%;
    padding: 0px;
  }

  /* line 394, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls {
    width: 100px;
  }

  /* line 397, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls button {
    width: 50%;
    padding: 0;
    text-align: center;
  }

  /* line 403, resources/assets/styles/widgets/_specials_hub.scss */

  .product-image-container .img-wrap {
    max-width: 536px;
    max-height: 536px;
    background-position: center;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1023px) {
  /* line 416, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 418, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-thumbnail {
    height: 350px;
    max-width: 350px;
  }

  /* line 421, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-thumbnail img.attachment-post_thumbnail {
    -webkit-transform: scale(0.95);
         -o-transform: scale(0.95);
            transform: scale(0.95);
  }

  /* line 426, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-label-block {
    width: 100%;
    margin-top: 0;
    margin-left: -40px;
    min-height: 1px;
  }

  /* line 435, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .content-container .close-button.close-special-preview {
    right: 20px;
    top: 20px;
  }

  /* line 440, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls {
    width: 100px;
    text-align: right;
    position: absolute;
    right: -5%;
    z-index: 99;
    top: 20px;
    font-size: 30px;
  }

  /* line 451, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  /* line 456, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls {
    width: 100px;
    text-align: right;
    position: absolute;
    right: 15px;
    z-index: 99;
    top: 20px;
    font-size: 30px;
  }

  /* line 465, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-nav {
    width: 38%;
    position: absolute;
    top: 40px;
    right: auto;
    z-index: 9;
    left: 40px;
  }

  /* line 473, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text {
    padding: 40px 55px;
    max-width: 100%;
  }

  /* line 476, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text .item-gallery-nav .gallery-thumbnail {
    border: solid 2px #000000;
    display: inline-block;
    max-width: 50px;
    height: auto;
    max-height: 50px;
    overflow: hidden;
  }

  /* line 487, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image img {
    width: 100%;
    height: auto;
  }

  /* line 493, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-nav button {
    background: #dedee2;
  }

  /* line 497, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .product-image-container .img-wrap {
    max-width: 1000px;
    max-height: 1000px;
    background-position: left center;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  /* line 510, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider.is-header {
    padding-top: 0px !important;
  }

  /* line 517, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image {
    padding: 0;
  }

  /* line 520, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image img {
    min-height: 1px;
    width: 100%;
    height: auto;
  }

  /* line 525, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text {
    padding: 30px 60px 30px;
  }

  /* line 527, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text .item-gallery-nav .gallery-thumbnail {
    margin-right: 6px;
    margin-bottom: 6px;
    border: solid 2px #000000;
    display: inline-block;
    max-width: 50px;
    height: auto;
    max-height: 50px;
    overflow: hidden;
  }

  /* line 537, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text .item-gallery-nav .gallery-thumbnail img {
    max-width: 50px;
    height: auto;
    max-height: 50px;
  }

  /* line 543, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text h2 {
    font-size: 40px;
  }

  /* line 546, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text h3 {
    font-size: 22px;
  }

  /* line 549, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  /* line 554, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-nav {
    width: 68%;
    position: absolute;
    top: 380px;
    right: auto;
    z-index: 9;
    left: 30px;
  }

  /* line 562, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls {
    width: 85px;
    text-align: right;
    position: absolute;
    right: 15px;
    z-index: 99;
    top: 360px;
    font-size: 30px;
  }

  /* line 573, resources/assets/styles/widgets/_specials_hub.scss */

  section.widget.specials-header-slider.is-header .col {
    padding: 0;
  }

  /* line 578, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .content-container .price-big {
    text-align: left !important;
  }

  /* line 581, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .content-container .price-small {
    text-align: right !important;
  }

  /* line 584, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .content-container .close-button.close-special-preview {
    right: 10px;
    top: 10px;
  }
}

@media screen and (max-width: 480px) {
  /* line 599, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .specials_carousel-widget .product-image-container .img-wrap {
    max-width: 300px;
    max-height: 300px;
    margin: 0 auto;
  }

  /* line 609, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 612, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-thumbnail img.attachment-post_thumbnail {
    -webkit-transform: scale(0.95);
         -o-transform: scale(0.95);
            transform: scale(0.95);
  }

  /* line 617, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-label-block {
    width: 80%;
    margin: -40px auto 0 auto;
    max-width: 80%;
  }

  /* line 625, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image img {
    min-height: 425px;
  }

  /* line 629, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider.is-header {
    padding-top: 0px !important;
  }

  /* line 632, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-nav {
    top: 440px;
    left: 40px;
  }

  /* line 636, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls {
    right: 30px;
    top: 420px;
  }

  /* line 643, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image {
    padding-top: 50px;
  }
}

@media screen and (max-width: 376px) {
  /* line 654, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-label-block {
    width: 90%;
  }

  /* line 657, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-nav {
    top: 380px;
    left: 45px;
  }

  /* line 661, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls {
    top: 362px;
    right: 30px;
  }

  /* line 665, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image img {
    min-height: 375px;
  }

  /* line 669, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls button {
    width: 50%;
    padding: 0;
    text-align: center;
  }
}

@media screen and (max-width: 321px) {
  /* line 680, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-hub-widget .special-item .special-label-block {
    width: 100%;
  }

  /* line 685, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-nav {
    top: 340px;
  }

  /* line 688, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .tns-controls {
    top: 320px;
  }

  /* line 691, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-text .item-gallery-nav .gallery-thumbnail img {
    max-width: 40px;
    height: auto;
    max-height: 40px;
  }

  /* line 696, resources/assets/styles/widgets/_specials_hub.scss */

  .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image img {
    min-height: 320px;
  }
}

/* line 2, resources/assets/styles/layouts/_header.scss */

.widget-page-header + .widget-page-header {
  display: none;
}

/* line 16, resources/assets/styles/layouts/_header.scss */

.sec-nav-item {
  line-height: normal;
}

/* line 19, resources/assets/styles/layouts/_header.scss */

.sec-nav-item a {
  line-height: 1.5;
  display: inline-block;
}

/* line 25, resources/assets/styles/layouts/_header.scss */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3999;
}

/* line 34, resources/assets/styles/layouts/_header.scss */

.header a:hover {
  text-decoration: none !important;
  color: #c80205;
}

@media screen and (max-width: 480px) {
  /* line 25, resources/assets/styles/layouts/_header.scss */

  .header {
    z-index: 4000;
  }
}

/* line 45, resources/assets/styles/layouts/_header.scss */

.header.shuffle-nav {
  opacity: 0;
  margin-left: -20%;
}

/* line 52, resources/assets/styles/layouts/_header.scss */

.header .nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 999;
}

/* line 59, resources/assets/styles/layouts/_header.scss */

.header .nav-bar .slogan-wrap {
  min-height: 0 !important;
}

/* line 64, resources/assets/styles/layouts/_header.scss */

.header button,
.header a.header-button {
  border: none;
  margin: 0 3px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 75, resources/assets/styles/layouts/_header.scss */

.header button.menu-btn,
.header a.header-button.menu-btn {
  display: block;
  background: #c80205;
  padding: 15px 10px 15px 10px;
  margin-left: 0;
}

/* line 82, resources/assets/styles/layouts/_header.scss */

.header button.menu-btn span,
.header a.header-button.menu-btn span {
  height: 3px;
  width: 100%;
  background: #ffffff;
  display: block;
  margin: 0 auto 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* line 93, resources/assets/styles/layouts/_header.scss */

.header button.menu-btn.active span:nth-child(1),
.header button.menu-btn.active span:nth-child(2),
.header a.header-button.menu-btn.active span:nth-child(1),
.header a.header-button.menu-btn.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
  margin-top: -6px;
  top: 5px;
  position: relative;
  height: 3px;
  border-radius: 3px;
}

/* line 104, resources/assets/styles/layouts/_header.scss */

.header button.menu-btn.active span:nth-child(3),
.header button.menu-btn.active span:nth-child(4),
.header a.header-button.menu-btn.active span:nth-child(3),
.header a.header-button.menu-btn.active span:nth-child(4) {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
  margin-top: -6px;
  top: 5px;
  position: relative;
  height: 3px;
  border-radius: 3px;
}

/* line 117, resources/assets/styles/layouts/_header.scss */

.header button.search-btn,
.header a.header-button.search-btn {
  background: #c80205;
  margin-left: 0;
  color: #fff;
  font-size: 34px;
  line-height: 0;
}

/* line 125, resources/assets/styles/layouts/_header.scss */

.header button.portal-btn,
.header a.header-button.portal-btn {
  background: #4a4a4a;
  margin-right: 0;
  color: #fff;
  font-size: 34px;
  line-height: 0;
}

/* line 132, resources/assets/styles/layouts/_header.scss */

.header button.portal-btn i,
.header a.header-button.portal-btn i {
  margin-left: -1px;
}

/* line 138, resources/assets/styles/layouts/_header.scss */

.header .brand-wrap {
  background: #ffffff;
  width: 100%;
  text-align: center;
  line-height: 50px;
  margin: 0 0 0 3px;
}

/* line 146, resources/assets/styles/layouts/_header.scss */

.header .col-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 150, resources/assets/styles/layouts/_header.scss */

.header #fixed-nav {
  background: #4a4a4a;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 155, resources/assets/styles/layouts/_header.scss */

.header #fixed-nav .icon {
  margin-right: 20px;
  line-height: 0;
}

/* line 160, resources/assets/styles/layouts/_header.scss */

.header #fixed-nav .brand {
  width: 10%;
  background: #ffffff;
  max-width: 52px;
}

/* line 165, resources/assets/styles/layouts/_header.scss */

.header #fixed-nav .brand img {
  max-height: 50px;
}

/* line 170, resources/assets/styles/layouts/_header.scss */

.header #fixed-nav .row {
  width: 100%;
}

/* line 173, resources/assets/styles/layouts/_header.scss */

.header #fixed-nav .row .col {
  border-right: 3px solid #ffffff;
}

/* line 178, resources/assets/styles/layouts/_header.scss */

.header #fixed-nav .fixed-nav-item {
  color: #ffffff;
}

/* line 181, resources/assets/styles/layouts/_header.scss */

.header #fixed-nav .fixed-nav-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* line 190, resources/assets/styles/layouts/_header.scss */

.header .brand img {
  max-height: 35px;
  margin-top: -4px;
}

/* line 198, resources/assets/styles/layouts/_header.scss */

.fixed-nav-item {
  font-family: "Oxygen", sans-serif;
  font-size: 21.2px;
  font-weight: bold;
  line-height: 1.28;
  text-align: left;
  color: #ffffff;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 210, resources/assets/styles/layouts/_header.scss */

.fixed-nav-item:hover {
  color: #ffffff;
  opacity: 0.6;
  text-decoration: none;
}

/* line 216, resources/assets/styles/layouts/_header.scss */

.fixed-nav-item i.icon {
  font-size: 35px;
  color: #fff !important;
}

/* line 221, resources/assets/styles/layouts/_header.scss */

.fixed-nav-item span {
  color: #fff !important;
}

/* TODO - background must change to red when menu is open */

/* line 227, resources/assets/styles/layouts/_header.scss */

.slogan {
  text-align: center;
  background-color: #4a4a4a;
  min-width: 100%;
  padding: 6px 0 10px;
  color: #ffffff;
  font-family: "Demos Next W01 Cn", serif;
  font-weight: 100;
  margin-bottom: 5px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* line 238, resources/assets/styles/layouts/_header.scss */

.slogan h5 {
  margin: 0;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 5px;
  padding: 0;
}

/* line 248, resources/assets/styles/layouts/_header.scss */

.shuffle-navs {
  display: none;
}

/* line 252, resources/assets/styles/layouts/_header.scss */

#shuffle-nav-content {
  width: 100%;
}

/* Page header of Search, Impressum, etc. */

/* line 259, resources/assets/styles/layouts/_header.scss */

.widget-page-header {
  padding: 120px 0 60px;
}

/* line 266, resources/assets/styles/layouts/_header.scss */

.page.no-page-header.home {
  padding: 0px;
}

/* line 274, resources/assets/styles/layouts/_header.scss */

#fixed-nav .fixed-nav-item:hover {
  opacity: 1;
}

@media screen and (min-width: 1366px) and (max-width: 1440px) {
  /* line 287, resources/assets/styles/layouts/_header.scss */

  #fixed-nav .fixed-nav-item {
    font-size: 18px;
  }

  /* line 290, resources/assets/styles/layouts/_header.scss */

  #fixed-nav .fixed-nav-item i.icon {
    margin-right: 20px;
  }

  /* line 297, resources/assets/styles/layouts/_header.scss */

  .nav-primary .help-nav .fixed-nav-item i.icon {
    font-size: 40px;
    top: -4px;
    bottom: 0;
  }
}

@media screen and (max-width: 1365px) {
  /* line 312, resources/assets/styles/layouts/_header.scss */

  .header #fixed-nav .fixed-nav-item {
    font-size: 16px;
  }

  /* line 315, resources/assets/styles/layouts/_header.scss */

  .header #fixed-nav .fixed-nav-item i.icon {
    font-size: 28px;
    margin-right: 12px;
  }

  /* line 324, resources/assets/styles/layouts/_header.scss */

  .header .nav-primary .help-nav .fixed-nav-item {
    padding: 6px 0 8px 0;
  }

  /* line 327, resources/assets/styles/layouts/_header.scss */

  .header .nav-primary .help-nav .fixed-nav-item i.icon {
    font-size: 34px;
  }

  /* line 335, resources/assets/styles/layouts/_header.scss */

  .header button.menu-btn,
  .header a.header-button.menu-btn,
  .header button.search-btn,
  .header a.header-button.search-btn,
  .header button.portal-btn,
  .header a.header-button.portal-btn {
    width: 54.95px;
    font-size: 30px;
    display: block;
    text-align: center;
    line-height: 46px;
  }

  /* line 348, resources/assets/styles/layouts/_header.scss */

  a.header-button.portal-btn {
    width: 60px !important;
  }

  /* line 352, resources/assets/styles/layouts/_header.scss */

  button.search-btn {
    line-height: 30px !important;
  }
}

@media screen and (max-width: 1024px) {
  /* line 361, resources/assets/styles/layouts/_header.scss */

  .fixed-nav-item {
    text-align: center;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    padding: 0 0;
  }

  /* line 382, resources/assets/styles/layouts/_header.scss */

  .fixed-nav-item i.icon {
    font-size: 28px;
    margin-right: 0 !important;
    display: block;
    width: 100%;
    line-height: 1;
  }

  /* line 390, resources/assets/styles/layouts/_header.scss */

  .fixed-nav-item span {
    display: none;
    width: 100%;
    line-height: 20px;
    font-size: 14px;
  }

  /* line 398, resources/assets/styles/layouts/_header.scss */

  .header button.menu-btn,
  .header a.header-button.menu-btn,
  .header a.header-button.search-btn,
  .header button.portal-btn,
  .header a.header-button.portal-btn {
    width: 56.8px;
  }

  /* line 407, resources/assets/styles/layouts/_header.scss */

  .search-btn {
    max-width: 50px;
    width: 50px;
    padding: 8px 0px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 50px;
  }
}

@media screen and (max-width: 599px) {
  /* line 423, resources/assets/styles/layouts/_header.scss */

  .fixed-nav-item span {
    display: none;
  }

  /* line 428, resources/assets/styles/layouts/_header.scss */

  .header .slogan-wrap {
    display: none;
  }

  /* line 432, resources/assets/styles/layouts/_header.scss */

  .header .nav-wrap {
    padding: 0 !important;
    overflow: hidden;
  }

  /* line 437, resources/assets/styles/layouts/_header.scss */

  .header #fixed-nav {
    display: none;
  }

  /* line 441, resources/assets/styles/layouts/_header.scss */

  .header .brand-wrap {
    margin: 0;
  }

  /* line 444, resources/assets/styles/layouts/_header.scss */

  .header .brand-wrap .main-logo {
    display: block !important;
    margin: 0;
  }

  /* line 450, resources/assets/styles/layouts/_header.scss */

  .header .portal-btn {
    display: none !important;
  }

  /* line 454, resources/assets/styles/layouts/_header.scss */

  .header .search-btn {
    margin: 0;
  }

  /* line 458, resources/assets/styles/layouts/_header.scss */

  .header .menu-btn {
    margin: 0;
  }

  /* line 464, resources/assets/styles/layouts/_header.scss */

  .header button.menu-btn,
  .header a.header-button.menu-btn {
    padding: 15px 10px 15px 10px;
    margin-left: 0px !important;
    width: 54px;
  }

  /* line 469, resources/assets/styles/layouts/_header.scss */

  .header button.search-btn,
  .header a.header-button.search-btn {
    width: 60px;
  }

  /* line 472, resources/assets/styles/layouts/_header.scss */

  .header button.menu-btn span,
  .header a.header-button.menu-btn span {
    height: 3px;
  }

  /* line 476, resources/assets/styles/layouts/_header.scss */

  header.header.affix {
    -webkit-box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.15);
  }
}

/* line 1, resources/assets/styles/layouts/_footer.scss */

footer {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* line 5, resources/assets/styles/layouts/_footer.scss */

footer .headline {
  margin-top: 15px;
  margin-bottom: 45px;
}

/* line 10, resources/assets/styles/layouts/_footer.scss */

footer h5 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
  color: #4a4a4a;
}

/* line 15, resources/assets/styles/layouts/_footer.scss */

footer h4 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  color: #c80205;
}

/* line 20, resources/assets/styles/layouts/_footer.scss */

footer .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-column-count: 2;
  column-count: 2;
}

@media screen and (max-width: 989px) {
  /* line 20, resources/assets/styles/layouts/_footer.scss */

  footer .menu {
    margin-bottom: 30px;
  }
}

/* line 32, resources/assets/styles/layouts/_footer.scss */

footer .menu li {
  list-style-type: none;
  margin: 0 0 30px;
  padding: 0;
  -webkit-column-break-inside: avoid;
}

/* line 38, resources/assets/styles/layouts/_footer.scss */

footer .menu li a {
  font-family: "Oxygen", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  text-align: left;
  color: #4a4a4a;
  text-transform: capitalize;
}

/* line 43, resources/assets/styles/layouts/_footer.scss */

footer .menu li a:hover {
  color: #242424;
  opacity: 0.8;
}

/* line 52, resources/assets/styles/layouts/_footer.scss */

.footer-map {
  width: 100%;
  display: block;
  min-height: 340px;
  min-width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  background-size: cover;
}

/* line 64, resources/assets/styles/layouts/_footer.scss */

.footer-map-container .icon-map {
  pointer-events: none;
}

/* line 68, resources/assets/styles/layouts/_footer.scss */

.footer-map-container a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
}

/* line 76, resources/assets/styles/layouts/_footer.scss */

.footer-map-container:after {
  content: ' ';
  background-size: 40px auto;
  background-position: center center;
  z-index: 2;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  /* line 95, resources/assets/styles/layouts/_footer.scss */

  footer {
    overflow: hidden;
    padding-bottom: 0;
  }

  /* line 99, resources/assets/styles/layouts/_footer.scss */

  footer .menu {
    margin-bottom: 0;
  }

  /* line 102, resources/assets/styles/layouts/_footer.scss */

  footer .menu li {
    list-style-type: none;
    margin: 0 0 25px;
  }
}

@media screen and (max-width: 767px) {
  /* line 114, resources/assets/styles/layouts/_footer.scss */

  footer {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  /* line 115, resources/assets/styles/layouts/_footer.scss */

  footer h4 {
    font-size: 38px;
    margin-bottom: 0;
    font-family: "Demos Next W01 Medium", serif;
  }

  /* line 121, resources/assets/styles/layouts/_footer.scss */

  footer .menu-footer-menu-container {
    margin-top: 40px;
    padding: 0 20px;
  }

  /* line 126, resources/assets/styles/layouts/_footer.scss */

  footer h5 {
    font-size: 20px;
    margin-bottom: 0;
  }

  /* line 131, resources/assets/styles/layouts/_footer.scss */

  footer .headline {
    padding: 20px 20px 0px;
    margin: 0;
  }

  /* line 139, resources/assets/styles/layouts/_footer.scss */

  footer .menu {
    -webkit-column-count: 1;
            column-count: 1;
  }

  /* line 143, resources/assets/styles/layouts/_footer.scss */

  footer .map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 360px;
    margin-left: -50px;
    width: calc(100% + 50px + 50px);
    margin-top: 20px;
  }

  /* line 150, resources/assets/styles/layouts/_footer.scss */

  footer .map i {
    opacity: .7;
    margin-top: -20px;
  }

  /* line 154, resources/assets/styles/layouts/_footer.scss */

  footer .map i:before {
    font-size: 150px;
  }
}

/* line 1, resources/assets/styles/layouts/_pages.scss */

.wrap {
  overflow: hidden;
}

/* line 5, resources/assets/styles/layouts/_pages.scss */

section {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* line 15, resources/assets/styles/layouts/_pages.scss */

.kc_clfw + section {
  margin-top: 0;
}

@media screen and (min-width: 1300px) {
  /* line 24, resources/assets/styles/layouts/_pages.scss */

  .kc-row-container:not(.kc-container) > .kc-wrap-columns > .kc-elm {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 42, resources/assets/styles/layouts/_pages.scss */

  section {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  /* line 55, resources/assets/styles/layouts/_pages.scss */

  section {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* line 3, resources/assets/styles/layouts/_posts.scss */

.single-post .item-header-image {
  margin-bottom: 80px;
}

/* line 8, resources/assets/styles/layouts/_posts.scss */

.related-posts {
  margin-bottom: 90px;
}

/* line 13, resources/assets/styles/layouts/_posts.scss */

.category-link {
  color: #4a4a4a;
}

/* line 18, resources/assets/styles/layouts/_posts.scss */

.post-link:hover {
  color: inherit;
}

/* line 23, resources/assets/styles/layouts/_posts.scss */

.category-post {
  padding: 40px 0;
}

/* line 27, resources/assets/styles/layouts/_posts.scss */

.post-body {
  margin-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 32, resources/assets/styles/layouts/_posts.scss */

.post-body .kc_text_block {
  background-color: transparent !important;
}

/* line 39, resources/assets/styles/layouts/_posts.scss */

.single-post-content .featured_page-widget .content-container {
  padding: 0 15px;
}

/* line 43, resources/assets/styles/layouts/_posts.scss */

.single-post-content .widget-page-header {
  padding-bottom: 40px;
}

/* line 48, resources/assets/styles/layouts/_posts.scss */

.single-post-content .featured-page-heading-group h1 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  color: #c80205;
}

@media screen and (min-width: 768px) {
  /* line 56, resources/assets/styles/layouts/_posts.scss */

  .columns-2-columns .body-text {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
            column-gap: 30px;
  }
}

/* Single Blog post page */

/* line 70, resources/assets/styles/layouts/_posts.scss */

.single-post .featured-page-heading-group .img-wrap,
.category .featured-page-heading-group .img-wrap {
  max-width: 160px;
}

@media screen and (max-width: 480px) {
  /* line 79, resources/assets/styles/layouts/_posts.scss */

  body.post-template-default.single.single-post {
    padding-top: 50px;
  }
}

/* line 1, resources/assets/styles/layouts/_tinymce.scss */

body#tinymce {
  margin: 12px !important;
}

/* line 5, resources/assets/styles/layouts/_tinymce.scss */

body#tinymce td,
body#tinymce tr {
  vertical-align: top;
}

/* Health tips and services. */

/* line 3, resources/assets/styles/layouts/_single_item.scss */

.item-header-image {
  height: 80vh;
  min-height: 300px;
  background-position: center center;
  background-size: cover;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 12, resources/assets/styles/layouts/_single_item.scss */

.item-header-image + section {
  margin-top: 0;
}

/* line 17, resources/assets/styles/layouts/_single_item.scss */

.item-tags {
  padding: 20px 0 30px;
}

/* line 21, resources/assets/styles/layouts/_single_item.scss */

.item-detail {
  position: relative;
  padding-top: 0px;
}

/* line 25, resources/assets/styles/layouts/_single_item.scss */

.item-detail header {
  position: relative;
  min-width: 552px;
  max-width: 552px;
  min-height: 480px;
  color: #ffffff;
  top: 0px;
  left: 0;
  padding: 35px 70px 35px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

/* line 39, resources/assets/styles/layouts/_single_item.scss */

.item-detail header .icon {
  font-size: 90px;
}

/* line 42, resources/assets/styles/layouts/_single_item.scss */

.item-detail header .icon:before {
  margin: 0;
}

/* line 47, resources/assets/styles/layouts/_single_item.scss */

.item-detail header .headline {
  margin-top: 60px;
}

/* line 51, resources/assets/styles/layouts/_single_item.scss */

.item-detail header h1 {
  font-family: "Demos Next W01 Cn", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  text-align: left;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  /* line 51, resources/assets/styles/layouts/_single_item.scss */

  .item-detail header h1 {
    margin-bottom: 22px;
  }
}

/* line 61, resources/assets/styles/layouts/_single_item.scss */

.item-detail header h2 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
  margin-bottom: 12px;
}

/* line 66, resources/assets/styles/layouts/_single_item.scss */

.item-detail header .intro-text {
  font-size: 20px;
}

/* line 69, resources/assets/styles/layouts/_single_item.scss */

.item-detail header .intro-text p,
.item-detail header .intro-text p > strong {
  color: #ffffff;
}

/* line 75, resources/assets/styles/layouts/_single_item.scss */

.item-detail .article-content {
  padding: 0 45px;
}

/* line 79, resources/assets/styles/layouts/_single_item.scss */

.item-detail .intro-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}

/* line 84, resources/assets/styles/layouts/_single_item.scss */

.item-detail .intro-headline h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
  margin-bottom: 5px;
  color: #4a4a4a;
}

@media screen and (max-width: 1023px) {
  /* line 84, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .intro-headline h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}

/* line 94, resources/assets/styles/layouts/_single_item.scss */

.item-detail .intro-headline h2 {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  /* line 94, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .intro-headline h2 {
    font-size: 33px;
    font-family: "Demos Next W01 Medium", serif;
  }
}

@media screen and (max-width: 767px) {
  /* line 105, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .item-tags {
    margin-bottom: 10px;
  }
}

/* line 110, resources/assets/styles/layouts/_single_item.scss */

.item-detail .item-text {
  margin-bottom: 65px;
}

@media screen {
  /* line 110, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .item-text {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 50px;
    column-gap: 50px;
  }
}

/* line 123, resources/assets/styles/layouts/_single_item.scss */

.item-detail .item-text h3 {
  font-size: 17px;
  font-weight: bold;
  color: #000000;
  font-family: "Oxygen", sans-serif;
}

/* line 131, resources/assets/styles/layouts/_single_item.scss */

.item-detail .item-text p + h3 {
  margin-top: 25px;
}

/* line 140, resources/assets/styles/layouts/_single_item.scss */

.single-health-tip .item-detail,
.health-tip-of-the-month-feature .item-detail,
.single.single-service .item-detail {
  position: relative;
  margin-top: -280px;
}

/* line 141, resources/assets/styles/layouts/_single_item.scss */

.single-health-tip .item-detail:before,
.health-tip-of-the-month-feature .item-detail:before,
.single.single-service .item-detail:before {
  position: absolute;
  content: ' ';
  width: 100%;
  left: 0;
  bottom: 0;
  height: calc(100% - 280px);
}

@media screen and (max-width: 499px) {
  /* line 140, resources/assets/styles/layouts/_single_item.scss */

  .single-health-tip .item-detail,
  .health-tip-of-the-month-feature .item-detail,
  .single.single-service .item-detail {
    margin-top: -80px;
  }

  /* line 154, resources/assets/styles/layouts/_single_item.scss */

  .single-health-tip .item-detail:before,
  .health-tip-of-the-month-feature .item-detail:before,
  .single.single-service .item-detail:before {
    height: calc(100% - 80px);
  }
}

/* line 162, resources/assets/styles/layouts/_single_item.scss */

.item-detail {
  /* Image captions */
}

/* line 164, resources/assets/styles/layouts/_single_item.scss */

.item-detail img + em {
  display: block;
  font-size: 14px;
  margin: 10px 0;
}

@media screen and (min-width: 989px) {
  /* line 172, resources/assets/styles/layouts/_single_item.scss */

  .service-preview .single-service .item-detail > .container,
  .service-preview .single-service .two-column-carousel .item-detail > .tns-outer,
  .two-column-carousel .service-preview .single-service .item-detail > .tns-outer {
    margin-top: 30px;
  }
}

/* line 178, resources/assets/styles/layouts/_single_item.scss */

.service-preview .item-detail .article-content {
  padding: 0;
}

/* line 187, resources/assets/styles/layouts/_single_item.scss */

.kc_text_block ul,
.item-detail ul,
.article-content .item-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-column-break-inside: avoid;
          break-inside: avoid;
  display: inline;
}

/* line 194, resources/assets/styles/layouts/_single_item.scss */

.kc_text_block ul li,
.item-detail ul li,
.article-content .item-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

/* line 199, resources/assets/styles/layouts/_single_item.scss */

.kc_text_block ul li:before,
.kc_text_block ul li:after,
.item-detail ul li:before,
.item-detail ul li:after,
.article-content .item-text ul li:before,
.article-content .item-text ul li:after {
  content: ' ';
  top: 10px;
  left: 0;
  width: 15px;
  height: 5px;
  display: block;
  position: absolute;
}

/* line 209, resources/assets/styles/layouts/_single_item.scss */

.kc_text_block ul li:after,
.item-detail ul li:after,
.article-content .item-text ul li:after {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* line 213, resources/assets/styles/layouts/_single_item.scss */

.kc_text_block ul li ul,
.item-detail ul li ul,
.article-content .item-text ul li ul {
  margin-top: 20px;
}

/* line 215, resources/assets/styles/layouts/_single_item.scss */

.kc_text_block ul li ul li:after,
.kc_text_block ul li ul li:before,
.item-detail ul li ul li:after,
.item-detail ul li ul li:before,
.article-content .item-text ul li ul li:after,
.article-content .item-text ul li ul li:before {
  content: ' ';
  top: 10px;
  left: 0;
  width: 4px;
  height: 10px;
  display: block;
  position: absolute;
  opacity: 0.5;
}

/* line 229, resources/assets/styles/layouts/_single_item.scss */

.article-text {
  padding-top: 0px;
  font-family: "Oxygen", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.56;
  text-align: left;
  -webkit-column-gap: 60px;
  column-gap: 60px;
  background-color: transparent !important;
}

/* line 242, resources/assets/styles/layouts/_single_item.scss */

.page-header-image {
  overflow: hidden;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 80px;
}

/* line 249, resources/assets/styles/layouts/_single_item.scss */

.page-header-image img {
  visibility: hidden;
}

/* line 259, resources/assets/styles/layouts/_single_item.scss */

.two-columned-article .heading-widget .heading .main-heading {
  font-size: 42px;
}

/* line 267, resources/assets/styles/layouts/_single_item.scss */

.two-columned-article .full-width-image {
  max-height: 500px;
  overflow: hidden;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* line 275, resources/assets/styles/layouts/_single_item.scss */

.two-columned-article .full-width-image img {
  visibility: hidden;
}

/* line 280, resources/assets/styles/layouts/_single_item.scss */

.two-columned-article .padded-content {
  padding: 20px 60px 0;
}

@media screen and (max-width: 599px) {
  /* line 280, resources/assets/styles/layouts/_single_item.scss */

  .two-columned-article .padded-content {
    padding: 20px 30px 0;
  }
}

/* line 290, resources/assets/styles/layouts/_single_item.scss */

.theme_aktionen-new .item-tags.tags {
  padding: 20px 0 0;
}

/* line 293, resources/assets/styles/layouts/_single_item.scss */

.theme_aktionen-new h5.subline {
  font-family: "Oxygen", sans-serif;
  font-size: 26px !important;
  font-weight: bold !important;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.27 !important;
  letter-spacing: normal;
  text-align: left;
  color: #4a4a4a;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 312, resources/assets/styles/layouts/_single_item.scss */

  .item-detail header {
    padding: 50px 60px;
  }

  /* line 316, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .intro-headline h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 326, resources/assets/styles/layouts/_single_item.scss */

  .intro-block p {
    line-height: 1.25;
  }

  /* line 330, resources/assets/styles/layouts/_single_item.scss */

  .item-header-image {
    height: calc(100vh - 120px);
  }

  /* line 334, resources/assets/styles/layouts/_single_item.scss */

  .item-detail header {
    max-height: none;
    min-height: 420px;
    padding: 50px;
  }

  /* line 339, resources/assets/styles/layouts/_single_item.scss */

  .item-detail header h1 {
    font-size: 45px;
    font-family: "Demos Next W01 Cn", serif;
  }

  /* line 344, resources/assets/styles/layouts/_single_item.scss */

  .item-detail header h2 {
    font-size: 20px;
  }

  /* line 350, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .item-text {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media screen and (max-width: 480px) {
  /* line 370, resources/assets/styles/layouts/_single_item.scss */

  header .icon:not(.icon-search) {
    font-size: 70px;
  }

  /* line 375, resources/assets/styles/layouts/_single_item.scss */

  header h2 {
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    margin-bottom: 0;
  }

  /* line 386, resources/assets/styles/layouts/_single_item.scss */

  header h1 {
    font-size: 38px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.11;
    letter-spacing: normal;
    text-align: left;
  }

  /* line 397, resources/assets/styles/layouts/_single_item.scss */

  .item-detail {
    position: relative;
    padding-top: 0;
    margin-top: 0;
  }

  /* line 402, resources/assets/styles/layouts/_single_item.scss */

  .item-detail header {
    position: static;
    min-width: 200px;
    max-width: 110%;
    padding: 20px 30px 20px;
    margin-top: -14vh;
    height: 100%;
    min-height: 200px;
  }

  /* line 413, resources/assets/styles/layouts/_single_item.scss */

  .item-detail header .headline {
    margin-top: 30px;
  }

  /* line 418, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .article-content {
    padding: 20px;
  }

  /* line 422, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .article-content .kc_single_image {
    margin: 0 -40px;
    width: calc(100% + 80px);
    max-width: none;
  }

  /* line 429, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .article-content .tag {
    margin-right: 15px;
    margin-bottom: 10px;
  }

  /* line 434, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .article-content .item-tags {
    padding: 20px 0 20px;
    margin-bottom: 0 !important;
  }

  /* line 439, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .article-content .service-image-container {
    margin-left: -25px;
    margin-right: -25px;
    width: 100%;
    max-width: 580px;
    margin-bottom: 20px !important;
  }

  /* line 446, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .article-content .service-image-container .kc_single_image img {
    max-width: 580px;
    display: block;
    width: 140%;
  }

  /* line 454, resources/assets/styles/layouts/_single_item.scss */

  .item-detail .item-text {
    margin-bottom: 65px;
    -webkit-column-count: 1;
            column-count: 1;
  }

  /* line 462, resources/assets/styles/layouts/_single_item.scss */

  .item-header-image {
    height: calc(100vh) !important;
  }

  /* line 465, resources/assets/styles/layouts/_single_item.scss */

  .single-service .item-detail article .article-content:before,
  .single-service .item-detail article .article-content:after {
    top: 40px !important;
    left: 0;
  }
}

/* line 1, resources/assets/styles/layouts/_health_tips.scss */

.grid {
  padding: 0;
  margin: 0;
}

/* line 2, resources/assets/styles/common/_typography.scss */

.health_tips-widget .headline h2,
.health_tips-widget .headline .main-heading {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 55px;
  font-weight: bold;
  line-height: 1.56;
  text-align: center;
  color: #c80205;
  margin-bottom: 50px;
  line-height: normal;
  text-transform: none;
}

/* line 9, resources/assets/styles/common/_typography.scss */

.health_tips-widget .headline h3,
.health_tips-widget .headline .overline {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 1px;
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: normal;
  text-transform: uppercase;
}

/* line 12, resources/assets/styles/layouts/_health_tips.scss */

.health_tips-item {
  background-color: #efefef;
}

/* line 16, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

/* line 23, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* line 29, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .collapsed-content {
  position: relative;
  overflow: hidden;
}

/* line 34, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .thumbnail-image {
  min-height: 400px;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  z-index: 2;
}

/* line 41, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .thumbnail-image img {
  visibility: hidden;
}

/* line 49, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item:hover .thumbnail-image {
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/* line 58, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .item-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 175px;
  padding: 15px 20px;
  z-index: 5;
}

/* line 66, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .item-text h3 {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

/* line 70, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .item-text .teaser-text {
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  line-height: 1.39;
  text-align: left;
  color: #ffffff;
}

/* line 74, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .item-text .teaser-text p {
  color: #ffffff;
}

/* line 79, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .item-text a {
  color: #ffffff;
}

/* line 84, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .item-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}

/* line 92, resources/assets/styles/layouts/_health_tips.scss */

.health-tips-items .item .item-link span.label {
  display: none;
}

/* Dots CTA */

/* line 101, resources/assets/styles/layouts/_health_tips.scss */

.dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: 20px;
  bottom: 20px;
}

/* line 108, resources/assets/styles/layouts/_health_tips.scss */

.dots i {
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  margin-bottom: 5px;
}

/* line 117, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services {
  padding: 60px 60px 30px 0;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

/* line 125, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services:after {
  position: absolute;
  height: 50%;
  width: 5px;
  max-height: 346px;
  content: '  ';
  display: block;
  right: 30px;
}

/* line 136, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services:before {
  position: absolute;
  width: 100%;
  height: 5px;
  content: '  ';
  display: block;
  right: 30px;
}

/* line 147, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services:before,
.bookable-services:after {
  bottom: 60px;
}

/* line 154, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services .service-item {
  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;
  margin-bottom: 20px;
}

/* line 160, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services .service-item h3 {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.32;
  text-align: left;
}

/* line 164, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services .service-item .service-description {
  padding-bottom: 20px;
  font-style: italic;
  font-family: "Demos Next W01 Medium", serif;
  font-size: 18px;
}

/* line 170, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services .service-item .service-description.no-line-item {
  font-family: "Oxygen", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
}

/* line 181, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services .service-item h3,
.bookable-services .service-item .service-description {
  width: 100%;
}

/* line 187, resources/assets/styles/layouts/_health_tips.scss */

.bookable-services p.overline {
  color: #4a4a4a;
}

/* line 192, resources/assets/styles/layouts/_health_tips.scss */

.booking-buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 30px;
}

/* line 199, resources/assets/styles/layouts/_health_tips.scss */

.booking-buttons .booking-button,
.booking-buttons .icon,
.booking-buttons a {
  color: #000000;
}

/* line 205, resources/assets/styles/layouts/_health_tips.scss */

.booking-buttons .icon-contact,
.booking-buttons .icon-newsletter---mail {
  font-size: 40px;
}

/* line 210, resources/assets/styles/layouts/_health_tips.scss */

.booking-buttons .booking-icon {
  margin: 10px 20px;
}

/* line 227, resources/assets/styles/layouts/_health_tips.scss */

.image-container,
.icon-container {
  min-width: 550px;
  max-width: 550px;
  margin-right: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 236, resources/assets/styles/layouts/_health_tips.scss */

.image-container.align-top,
.icon-container.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* line 241, resources/assets/styles/layouts/_health_tips.scss */

.image-container + .icon-container,
.icon-container + .icon-container {
  display: none;
}

/* line 246, resources/assets/styles/layouts/_health_tips.scss */

.icon-container {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 100%;
  padding-bottom: 30px;
}

@media screen and (min-width: 1100px) {
  /* line 246, resources/assets/styles/layouts/_health_tips.scss */

  .icon-container {
    min-width: 500px;
    max-width: 500px;
  }
}

/* line 256, resources/assets/styles/layouts/_health_tips.scss */

.icon-container .icon {
  font-size: 250px;
  margin: -25px 0 0 0;
}

/* line 260, resources/assets/styles/layouts/_health_tips.scss */

.icon-container .icon:before {
  margin: 0;
}

/* line 266, resources/assets/styles/layouts/_health_tips.scss */

.service-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-bottom: 30px;
}

/* line 273, resources/assets/styles/layouts/_health_tips.scss */

.service-options .main-heading {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
}

/* line 278, resources/assets/styles/layouts/_health_tips.scss */

.service-bookings-headline,
.hub-widget .service-preview .service-bookings-headline {
  text-align: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 286, resources/assets/styles/layouts/_health_tips.scss */

.service-bookings-headline .overline,
.hub-widget .service-preview .service-bookings-headline .overline {
  text-transform: none;
}

/* line 290, resources/assets/styles/layouts/_health_tips.scss */

.service-bookings-headline h2,
.hub-widget .service-preview .service-bookings-headline h2 {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  margin-bottom: 25px;
}

/* line 295, resources/assets/styles/layouts/_health_tips.scss */

.service-bookings-headline p,
.hub-widget .service-preview .service-bookings-headline p {
  margin-bottom: 0;
  font-family: "Oxygen", sans-serif;
  font-size: 17px;
  line-height: 1.71;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  /* line 295, resources/assets/styles/layouts/_health_tips.scss */

  .service-bookings-headline p,
  .hub-widget .service-preview .service-bookings-headline p {
    font-size: 20px;
    line-height: 1.2;
  }
}

/* line 301, resources/assets/styles/layouts/_health_tips.scss */

.line-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

/* line 307, resources/assets/styles/layouts/_health_tips.scss */

.line-item > .item-spec {
  font-size: 18px;
  font-family: "Oxygen", sans-serif;
  font-size: 17px;
  line-height: 1.29;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  /* line 311, resources/assets/styles/layouts/_health_tips.scss */

  .line-item > .item-spec:first-child {
    margin-right: 60px;
  }
}

/* line 318, resources/assets/styles/layouts/_health_tips.scss */

.line-item > .item-spec .value {
  background-color: #ffffff;
  position: relative;
  padding: 4px 8px;
  min-width: 150px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  /* line 318, resources/assets/styles/layouts/_health_tips.scss */

  .line-item > .item-spec .value {
    min-width: 120px;
  }
}

@media screen and (max-width: 767px) {
  /* line 307, resources/assets/styles/layouts/_health_tips.scss */

  .line-item > .item-spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
}

/* line 341, resources/assets/styles/layouts/_health_tips.scss */

.footnote {
  width: 100%;
  text-align: right !important;
  font-family: "Demos Next W01 Regular", serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.57;
  text-align: left;
  margin-top: 3px;
}

/* line 348, resources/assets/styles/layouts/_health_tips.scss */

.booking-button {
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  max-width: 200px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 357, resources/assets/styles/layouts/_health_tips.scss */

.booking-button .icon {
  font-size: 40px;
  margin-right: 15px;
}

/* line 368, resources/assets/styles/layouts/_health_tips.scss */

.item-count-0 .booking-button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

/* line 373, resources/assets/styles/layouts/_health_tips.scss */

.item-count-0 .booking-buttons {
  margin-top: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* Featured health tip opf the month, on the overview page */

/* line 380, resources/assets/styles/layouts/_health_tips.scss */

section section {
  margin-bottom: 0;
  margin-top: 0;
}

/* line 388, resources/assets/styles/layouts/_health_tips.scss */

.health-tip-of-the-month-feature .item-detail {
  margin-bottom: 0;
}

/* line 391, resources/assets/styles/layouts/_health_tips.scss */

.health-tip-of-the-month-feature .item-detail header .headline {
  margin-top: 5px;
}

/* line 397, resources/assets/styles/layouts/_health_tips.scss */

.more-health-tips.mobile-full-width {
  padding: 0 30px;
}

/* line 401, resources/assets/styles/layouts/_health_tips.scss */

.post-content {
  height: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 15px;
}

/* line 411, resources/assets/styles/layouts/_health_tips.scss */

.post-content .scrollable {
  font-family: "Oxygen", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.56;
  text-align: left;
  padding-right: 15px;
}

/* line 417, resources/assets/styles/layouts/_health_tips.scss */

.post-content .tags {
  margin-top: 20px;
  margin-bottom: 0;
}

/* line 421, resources/assets/styles/layouts/_health_tips.scss */

.post-content .tags.item-tags {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

/* line 425, resources/assets/styles/layouts/_health_tips.scss */

.post-content .tags.item-tags .tag {
  margin-bottom: 20px;
}

/* line 431, resources/assets/styles/layouts/_health_tips.scss */

.post-content .overline {
  font-family: "Oxygen", sans-serif;
  font-size: 15px;
  line-height: 1.26;
  letter-spacing: 0.4px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  min-width: 250px;
  font-size: 19.8px;
  line-height: 25px;
  margin-bottom: 10px;
}

/* line 438, resources/assets/styles/layouts/_health_tips.scss */

.post-content .headline {
  font-size: 42px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 20px;
}

/* line 449, resources/assets/styles/layouts/_health_tips.scss */

.post-content * {
  height: 0;
  max-height: 0;
}

/* line 456, resources/assets/styles/layouts/_health_tips.scss */

.show-loaded-content .collapsed-content {
  margin-bottom: 0;
  padding-bottom: 0;
  border-width: 3px;
  border-style: solid;
}

/* line 462, resources/assets/styles/layouts/_health_tips.scss */

.show-loaded-content .collapsed-content .dots {
  display: none;
}

/* line 466, resources/assets/styles/layouts/_health_tips.scss */

.show-loaded-content .collapsed-content:hover {
  border-width: 3px;
  border-style: solid;
}

/* line 471, resources/assets/styles/layouts/_health_tips.scss */

.show-loaded-content .collapsed-content .item-text {
  opacity: 0;
}

/* line 477, resources/assets/styles/layouts/_health_tips.scss */

.show-loaded-content .post-content {
  height: auto;
  display: block;
  max-height: none;
  opacity: 1;
}

/* line 483, resources/assets/styles/layouts/_health_tips.scss */

.show-loaded-content .post-content * {
  height: auto;
  max-height: none;
}

/* line 488, resources/assets/styles/layouts/_health_tips.scss */

.show-loaded-content .post-content .scrollable {
  max-height: 700px;
  overflow: auto;
}

/* line 495, resources/assets/styles/layouts/_health_tips.scss */

.bookable-service-teaser {
  margin-bottom: 20px;
  padding-right: 100px;
}

/* line 500, resources/assets/styles/layouts/_health_tips.scss */

.bookable-service-teaser,
.bookable-service-teaser h4 {
  font-family: "Oxygen-bold", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #4a4a4a;
}

/* line 512, resources/assets/styles/layouts/_health_tips.scss */

.bookable-service-teaser .service-teaser-headline {
  font-weight: bold;
}

/* line 517, resources/assets/styles/layouts/_health_tips.scss */

.item-booking-service {
  margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
  /* line 527, resources/assets/styles/layouts/_health_tips.scss */

  .bookable-services .icon-container {
    min-width: 50%;
  }

  /* line 531, resources/assets/styles/layouts/_health_tips.scss */

  .health-tips-items .item .item-text h3 {
    font-size: 28px;
  }

  /* line 534, resources/assets/styles/layouts/_health_tips.scss */

  .bookable-services:before {
    right: 0;
  }

  /* line 538, resources/assets/styles/layouts/_health_tips.scss */

  .bookable-services:after {
    right: 0;
  }

  /* line 543, resources/assets/styles/layouts/_health_tips.scss */

  .single-health-tip .item-booking-service .bookable-services .service-options {
    padding: 10px 40px 0 20px;
  }

  /* line 546, resources/assets/styles/layouts/_health_tips.scss */

  .single-health-tip .image-container,
  .single-health-tip .icon-container {
    min-width: 100px;
    max-width: 620px;
  }

  /* line 550, resources/assets/styles/layouts/_health_tips.scss */

  .single-health-tip .bookable-services {
    padding: 60px 60px 60px 0;
  }
}

@media screen and (max-width: 1023px) {
  /* line 559, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service {
    margin-bottom: 40px;
  }

  /* line 565, resources/assets/styles/layouts/_health_tips.scss */

  .service-bookings-headline .overline,
  .hub-widget .service-preview .service-bookings-headline .overline {
    margin-bottom: 10px;
  }

  /* line 569, resources/assets/styles/layouts/_health_tips.scss */

  .service-bookings-headline h2,
  .hub-widget .service-preview .service-bookings-headline h2 {
    font-family: "Demos Next W01 Medium", serif;
    font-size: 33px;
    margin-bottom: 20px;
  }

  /* line 576, resources/assets/styles/layouts/_health_tips.scss */

  .bookable-services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0;
    margin-bottom: 0;
  }

  /* line 591, resources/assets/styles/layouts/_health_tips.scss */

  .line-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }

  /* line 595, resources/assets/styles/layouts/_health_tips.scss */

  .line-item .item-spec {
    margin-bottom: 15px;
  }

  /* line 600, resources/assets/styles/layouts/_health_tips.scss */

  .health-tips-items .item .item-text h3 {
    font-size: 30px;
  }

  /* line 604, resources/assets/styles/layouts/_health_tips.scss */

  .health-tips-items .item .item-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 125px;
    padding: 30px;
    z-index: 5;
  }

  /* line 613, resources/assets/styles/layouts/_health_tips.scss */

  .bookable-services .service-options {
    padding: 0 40px;
  }

  /* line 617, resources/assets/styles/layouts/_health_tips.scss */

  .image-container {
    width: 120%;
    overflow: hidden;
    margin-left: -10%;
    height: 60vh;
    margin-bottom: 40px;
    max-width: 130% !important;
    min-width: 130% !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 627, resources/assets/styles/layouts/_health_tips.scss */

  .single-service .item-detail article header {
    margin-left: 30px;
  }

  /* line 638, resources/assets/styles/layouts/_health_tips.scss */

  .single-health-tip .bookable-services:after {
    right: 0px;
  }

  /* line 641, resources/assets/styles/layouts/_health_tips.scss */

  .single-health-tip .bookable-services:before {
    right: 0px;
  }
}

@media screen and (max-width: 767px) {
  /* line 651, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service {
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  /* line 657, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .col-12 {
    padding: 0 !important;
  }

  /* line 661, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services {
    padding: 40px 15px;
  }
}

@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 661, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 767px) {
  /* line 668, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services .service-options {
    padding: 10px 20px 0 20px;
  }

  /* line 671, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services .service-options .main-heading {
    font-family: "Demos Next W01 Bold", serif;
    font-size: 33px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.12;
  }
}

@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 671, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services .service-options .main-heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  /* line 683, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services .service-options .bookable-service-teaser.text-left {
    padding: 0;
  }

  /* line 687, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services .service-options .booking-buttons {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 690, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services .service-options .booking-buttons .booking-icon,
  .item-booking-service .bookable-services .service-options .booking-buttons .booking-button {
    margin: 0 20px 20px;
  }

  /* line 693, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services .service-options .booking-buttons .booking-icon .icon,
  .item-booking-service .bookable-services .service-options .booking-buttons .booking-icon i,
  .item-booking-service .bookable-services .service-options .booking-buttons .booking-button .icon,
  .item-booking-service .bookable-services .service-options .booking-buttons .booking-button i {
    font-size: 44px;
    margin: auto;
  }

  /* line 711, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .single-service .item-detail article header {
    margin-left: 0 !important;
  }

  /* line 715, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services:before {
    right: 40px;
  }

  /* line 719, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services:after {
    right: 40px;
  }

  /* line 724, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .health-tips-items .item .container,
  .item-booking-service .health-tips-items .item .two-column-carousel .tns-outer,
  .two-column-carousel .item-booking-service .health-tips-items .item .tns-outer {
    padding: 0;
  }

  /* line 728, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .health-tips-items .item .post-content {
    margin-bottom: 0;
  }

  /* line 733, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .health-tips-items .col-lg-4.col-md-12 {
    padding: 0 !important;
  }

  /* line 736, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .single-service .item-detail article header {
    margin-left: 0;
  }
}

@media screen and (max-width: 376px) {
  /* line 745, resources/assets/styles/layouts/_health_tips.scss */

  .single-service .item-detail article header {
    margin-left: 0 !important;
  }

  /* line 749, resources/assets/styles/layouts/_health_tips.scss */

  #health_tip_items h3.main-heading {
    font-size: 28px !important;
  }

  /* line 753, resources/assets/styles/layouts/_health_tips.scss */

  #health_tip_items h4.overline {
    margin-top: 40px;
  }

  /* line 761, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services .service-options .line-item > .item-spec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 766, resources/assets/styles/layouts/_health_tips.scss */

  .item-booking-service .bookable-services {
    padding: 40px 60px 40px 40px;
  }
}

/* line 3, resources/assets/styles/layouts/_single_service.scss */

.single-service .kc_single_image img {
  margin-top: 5px;
}

/* line 8, resources/assets/styles/layouts/_single_service.scss */

.single-service .bookable-services {
  margin-bottom: 0;
}

/* line 12, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-booking-service {
  margin-top: 0px;
  margin-bottom: 30px;
}

/* line 17, resources/assets/styles/layouts/_single_service.scss */

.single-service .service-img-right {
  width: 95%;
  float: right;
}

/* line 23, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail {
  margin-bottom: 20px;
}

/* line 26, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail .intro-headline {
  padding: 0 0 0 70px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 5px;
}

/* line 31, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail .intro-headline h2 {
  margin-bottom: 30px;
}

/* line 36, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail .intro-headline h3 {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 22px;
  line-height: 1.32;
  text-align: left;
  max-width: 690px;
}

@media screen and (max-width: 1023px) {
  /* line 36, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .intro-headline h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}

/* line 47, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail .intro-block > div {
  padding-left: 0;
}

/* line 53, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail .service-copy-row > div {
  padding-left: 0;
}

/* line 58, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail header {
  min-height: 445px;
}

/* line 63, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article header {
  z-index: 100;
  height: auto;
  padding: 25px;
}

@media screen and (min-width: 1025px) {
  /* line 63, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article header {
    left: 140px;
  }
}

/* line 71, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article header .headline {
  margin-top: 30px;
}

/* line 76, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article .service-article {
  padding: 0 10px;
}

/* line 80, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article .item-tags {
  padding: 0 0 20px 70px;
}

/* line 84, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article .item-text {
  -webkit-column-count: 1;
  column-count: 1;
  padding: 0 0 0 100px;
}

/* line 90, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article:before,
.single-service .item-detail article:after {
  display: none;
}

/* line 94, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article .article-content {
  position: relative;
}

/* line 97, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article .article-content:before {
  content: "";
  display: block;
  position: absolute;
  top: -120px;
  height: 6px;
  width: 100%;
  max-width: 1170px;
}

/* line 107, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail article .article-content:after {
  content: "";
  display: block;
  position: absolute;
  top: -120px;
  height: 346px;
  width: 6px;
}

/* line 119, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail .single-header,
.single-service .item-detail .heading-sub-header {
  color: inherit;
}

/* line 122, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail .single-header h2,
.single-service .item-detail .heading-sub-header h2 {
  font-size: 42px;
  font-family: "Demos Next W01 Regular", serif;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  /* line 122, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .single-header h2,
  .single-service .item-detail .heading-sub-header h2 {
    font-family: "Demos Next W01 Medium", serif;
    font-size: 28px;
  }
}

@media screen and (max-width: 1024px) {
  /* line 141, resources/assets/styles/layouts/_single_service.scss */

  .single-service.single .item-detail article:before,
  .single-service.single .item-detail article:after {
    display: none;
  }
}

/* line 152, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-preview {
  padding: 0 0 55px 0;
}

/* line 155, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-preview h1 {
  font-size: 48px;
}

/* line 159, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-preview .tag {
  font-size: 13px;
  padding: 4px 15px 7px;
  margin-right: 20.5px;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 767px) {
  /* line 159, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .tag {
    margin-right: 10px;
  }
}

@media screen and (min-width: 1365px) {
  /* line 170, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview article {
    margin-left: -70px;
  }
}

/* line 175, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-preview article:before {
  top: 40px;
}

/* line 179, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-preview article:after {
  top: 40px;
  height: calc(100% - 40px);
}

/* line 188, resources/assets/styles/layouts/_single_service.scss */

.single-service.single .item-preview article {
  padding: 110px 0 0 0;
}

/* line 199, resources/assets/styles/layouts/_single_service.scss */

.service-preview .item-detail article {
  padding-top: 0;
}

/* line 202, resources/assets/styles/layouts/_single_service.scss */

.service-preview .item-detail article .article-content {
  padding-top: 60px;
}

/* line 205, resources/assets/styles/layouts/_single_service.scss */

.service-preview .item-detail article .article-content:before {
  top: 30px;
}

/* line 209, resources/assets/styles/layouts/_single_service.scss */

.service-preview .item-detail article .article-content:after {
  top: 30px;
}

@media screen and (max-width: 1023px) {
  /* line 214, resources/assets/styles/layouts/_single_service.scss */

  .service-preview .item-detail article .article-content:before,
  .service-preview .item-detail article .article-content:after {
    content: '';
    display: none;
  }
}

/* line 226, resources/assets/styles/layouts/_single_service.scss */

.header-strip {
  color: #fff;
  padding: 25px 0;
}

/* line 231, resources/assets/styles/layouts/_single_service.scss */

.service-item {
  position: relative;
}

/* line 234, resources/assets/styles/layouts/_single_service.scss */

.service-item .large-icon {
  display: none;
  z-index: 10;
  padding: 40px 0 0;
}

/* line 240, resources/assets/styles/layouts/_single_service.scss */

.service-item:before {
  content: ' ';
  display: block;
  position: absolute;
  width: calc(100% - 50px);
  height: calc(100% - 150px);
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}

/* line 255, resources/assets/styles/layouts/_single_service.scss */

.service-item.preview-service-item .img-wrap .icon-heading-wrap {
  display: none;
}

/* line 260, resources/assets/styles/layouts/_single_service.scss */

.service-item.preview-service-item .text-description {
  display: none;
}

/* line 264, resources/assets/styles/layouts/_single_service.scss */

.service-item.preview-service-item .large-icon {
  color: #fff;
  font-size: 125px;
  display: block;
}

/* line 271, resources/assets/styles/layouts/_single_service.scss */

.service-item .read-more-blocks {
  bottom: -4px !important;
}

/* line 278, resources/assets/styles/layouts/_single_service.scss */

.service-preview.has-content {
  /*  @media screen {
        padding-bottom: 65px;
      }*/
}

/* line 285, resources/assets/styles/layouts/_single_service.scss */

.preview-text {
  position: relative;
  padding-bottom: 40px;
}

/* line 289, resources/assets/styles/layouts/_single_service.scss */

.preview-text:after {
  position: absolute;
  right: 40px;
  height: 5px;
  width: calc(100% - 40px);
  bottom: 0;
  content: ' ';
  display: block;
}

/* line 299, resources/assets/styles/layouts/_single_service.scss */

.preview-text:before {
  position: absolute;
  content: ' ';
  display: block;
  right: 40px;
  width: 5px;
  height: calc(100% - 80px);
  bottom: 0;
  z-index: 1;
}

/* line 310, resources/assets/styles/layouts/_single_service.scss */

.preview-text .single-service .item-detail .single-header h2,
.preview-text .single-service .item-detail .heading-sub-header h2 {
  font-size: 28px;
}

/* line 315, resources/assets/styles/layouts/_single_service.scss */

.preview-text .preview-image-container img {
  margin-right: -10%;
  right: -4%;
  position: relative;
}

/* line 324, resources/assets/styles/layouts/_single_service.scss */

.single-service .item-detail .intro-block .kc_col-sm-6:first-child {
  padding-right: 50px;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 331, resources/assets/styles/layouts/_single_service.scss */

  .preview-text {
    padding: 0 0 40px 70px;
  }

  /* line 335, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-text {
    padding-left: 70px;
    padding-right: 40px;
  }

  /* line 340, resources/assets/styles/layouts/_single_service.scss */

  .preview-text:before {
    right: 16px;
  }

  /* line 343, resources/assets/styles/layouts/_single_service.scss */

  .preview-text:after {
    right: 16px;
  }

  /* line 346, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .intro-headline {
    padding: 0 0 0 40px;
  }

  /* line 349, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .item-tags {
    padding: 0 0 20px 40px;
  }
}

@media screen and (max-width: 1100px) {
  /* line 357, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .single-header h2,
  .single-service .item-detail .heading-sub-header h2 {
    font-size: 33px;
  }

  /* line 361, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .intro-headline {
    padding: 0 0 0 40px;
  }

  /* line 365, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .item-tags {
    padding: 0 0 20px 40px;
  }

  /* line 368, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-text {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* line 372, resources/assets/styles/layouts/_single_service.scss */

  .preview-text .preview-image-container img {
    margin-right: -10%;
    right: -5%;
    position: relative;
    width: 120%;
    max-width: 150%;
  }

  /* line 379, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview h1 {
    font-size: 48px;
    text-align: center;
  }

  /* line 384, resources/assets/styles/layouts/_single_service.scss */

  .service-item:before {
    content: ' ';
    display: block;
    position: absolute;
    height: calc(100% - 150px);
    width: 100% !important;
    top: 150px;
  }

  /* line 393, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .item-text {
    padding: 0 0 0 55px;
  }

  /* line 398, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article header {
    margin-left: 50px;
  }

  /* line 401, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .intro-block .kc_col-sm-6:first-child {
    padding-right: 30px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 415px) {
  /* line 411, resources/assets/styles/layouts/_single_service.scss */

  .item-header-image {
    height: calc(80vh - 120px);
  }
}

@media screen and (max-width: 1023px) {
  /* line 418, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .item-text {
    -webkit-column-count: 1;
    column-count: 1;
  }

  /* line 424, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail header {
    height: 360px;
    width: 360px;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    margin-left: 0;
  }

  /* line 435, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-text {
    padding: 0px 0 0 45px !important;
  }

  /* line 443, resources/assets/styles/layouts/_single_service.scss */

  .preview-text {
    position: relative;
    padding: 10px 70px 40px;
  }

  /* line 448, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .article-content {
    padding: 0px 20px 0 0px;
  }

  /* line 454, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .intro-headline,
  .single-service .item-detail article .item-tags {
    padding-left: 0px;
  }

  /* line 459, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview article {
    padding: 70px 0 0 0;
    margin-left: 0;
  }

  /* line 460, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview article:before {
    max-width: calc(100% - 60px);
  }

  /* line 470, resources/assets/styles/layouts/_single_service.scss */

  .preview-text {
    padding-left: 30px;
  }

  /* line 474, resources/assets/styles/layouts/_single_service.scss */

  .icon-container {
    min-width: 240px;
  }

  /* line 480, resources/assets/styles/layouts/_single_service.scss */

  .service-item:before {
    content: ' ';
    display: block;
    position: absolute;
    width: calc(100%);
    height: calc(100% - 70px);
    bottom: -70px;
    max-width: 280px;
  }

  /* line 492, resources/assets/styles/layouts/_single_service.scss */

  .service-item.preview-service-item .large-icon {
    color: #fff;
    font-size: 125px;
    display: block;
    position: relative;
    bottom: 0;
    padding: 0px 0 0;
  }

  /* line 500, resources/assets/styles/layouts/_single_service.scss */

  .service-item.preview-service-item .large-icon .icon {
    line-height: normal;
  }

  /* line 503, resources/assets/styles/layouts/_single_service.scss */

  .service-item.preview-service-item .large-icon .icon:before {
    line-height: normal;
    font-size: 80%;
    margin-bottom: -50px;
  }

  /* line 512, resources/assets/styles/layouts/_single_service.scss */

  .service-item .read-more-blocks {
    bottom: -60px !important;
    top: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  /* line 525, resources/assets/styles/layouts/_single_service.scss */

  .services-hub-widget .single-service .item-preview article {
    padding: 70px 40px 0 40px;
    margin-left: 0;
    position: relative;
  }

  /* line 530, resources/assets/styles/layouts/_single_service.scss */

  .services-hub-widget .single-service .item-preview article:before,
  .services-hub-widget .single-service .item-preview article:after {
    position: absolute;
    content: ' ';
    display: block;
    left: 20px;
    width: 5px;
    height: calc(100% - 60px);
    top: 40px;
    z-index: 1;
  }

  /* line 542, resources/assets/styles/layouts/_single_service.scss */

  .services-hub-widget .single-service .item-preview article:after {
    height: 5px;
    width: calc(100% - 60px);
  }

  /* line 554, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview {
    padding: 0 0 40px 0;
  }

  /* line 555, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-text {
    padding-bottom: 30px;
  }

  /* line 561, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview h1 {
    font-size: 28px;
    margin: 0 auto;
    max-width: 100%;
    font-family: "Demos Next W01 Medium", serif;
  }

  /* line 568, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview h2 {
    margin-bottom: 10px;
    font-family: "Demos Next W01 Bold", serif;
  }

  /* line 573, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-text {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* line 577, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-text:before {
    max-height: 380px;
  }

  /* line 581, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-text .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  /* line 586, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-text .buttons .booking-button {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  /* line 595, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: "Demos Next W01 Medium", serif;
  }

  /* line 601, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview h3 {
    font-size: 20px;
  }

  /* line 605, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-image-container {
    margin: 40px -6% 0;
    max-width: 150%;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 114% !important;
            flex: 0 0 114% !important;
  }

  /* line 610, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-image-container img {
    width: 100%;
    right: 0;
  }

  /* line 621, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .intro-headline h2 {
    margin-bottom: 10px;
  }

  /* line 625, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail header {
    left: auto;
    margin-left: 30px;
  }
}

@media screen and (max-width: 1023px) and (max-width: 1024px) {
  /* line 633, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article:before,
  .single-service .item-detail article:after {
    position: absolute;
    content: ' ';
    display: block;
    left: 0px;
    width: 5px;
    height: calc(100% - 60px);
    max-height: 300px;
    top: -20px;
    z-index: 1;
  }

  /* line 646, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article:after {
    height: 5px;
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 1023px) {
  /* line 652, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .article-content {
    padding: 70px 20px 0 0px;
    margin-left: 0;
    position: relative;
    margin-top: -70px;
  }

  /* line 664, resources/assets/styles/layouts/_single_service.scss */

  .single.single-service .item-detail .intro-headline,
  .single.single-service .item-detail article .item-tags {
    padding-left: 30px;
  }

  /* line 672, resources/assets/styles/layouts/_single_service.scss */

  #services_hub_content .single-item.service-item {
    max-width: 700px;
    margin: auto;
  }

  /* line 677, resources/assets/styles/layouts/_single_service.scss */

  #services_hub_content .container,
  #services_hub_content .two-column-carousel .tns-outer,
  .two-column-carousel #services_hub_content .tns-outer {
    max-width: 100% !important;
  }

  /* line 683, resources/assets/styles/layouts/_single_service.scss */

  .item-text .kc_col-sm-6,
  .item-text .kc_col-sm-12 {
    /* .col-12: */
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  /* line 693, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .intro-block .kc_col-sm-6:first-child {
    padding-right: 0px;
  }
}

@media screen and (max-width: 989px) {
  /* line 702, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .article-content:before,
  .single-service .item-detail article .article-content:after {
    top: -20px;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  /* line 713, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-preview .preview-image-container {
    margin: 40px -12% 0;
    max-width: 150%;
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 114% !important;
    flex: 0 0 124% !important;
  }
}

@media screen and (max-width: 480px) {
  /* line 728, resources/assets/styles/layouts/_single_service.scss */

  .intro-block .kc_single_image {
    max-width: none;
    width: calc(100% + 90px);
    line-height: 0;
    margin: 20px 0 20px -40px;
  }

  /* line 739, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .intro-headline {
    padding: 0;
  }

  /* line 743, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article header {
    padding: 25px;
    width: 100%;
    top: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
    min-height: 50px;
    position: relative;
    margin-bottom: 50px;
    margin-top: -14vh;
  }

  /* line 759, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .item-tags {
    padding: 0;
  }

  /* line 763, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .item-text {
    -webkit-column-count: 1;
    column-count: 1;
    padding: 0 0 0 45px;
  }

  /* line 768, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .item-text .kc_single_image {
    max-width: none;
    width: calc(100% + 80px);
    margin: 0 -40px;
  }

  /* line 774, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .item-text .kc_col-sm-6 {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 780, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article .tag {
    margin-bottom: 10px;
  }

  /* line 788, resources/assets/styles/layouts/_single_service.scss */

  .single-service .headline h2.overline {
    margin-bottom: 0 !important;
  }

  /* line 793, resources/assets/styles/layouts/_single_service.scss */

  .single-service .service-article .item-tags.tags {
    padding-bottom: 20px !important;
  }

  /* line 798, resources/assets/styles/layouts/_single_service.scss */

  .single-service .service-article .intro-headline h3.subline {
    padding-bottom: 20px;
  }

  /* line 802, resources/assets/styles/layouts/_single_service.scss */

  .single-service .service-article .intro-headline h2.main-heading {
    margin-bottom: 20px;
  }

  /* line 811, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail article header {
    margin-left: 0 !important;
  }

  /* line 816, resources/assets/styles/layouts/_single_service.scss */

  .single-service .item-detail .single-header h2,
  .single-service .item-detail .heading-sub-header h2 {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

/* Pharmacies / Apotheken */

/* line 2, resources/assets/styles/layouts/_pharmacies.scss */

.apotheken {
  padding-top: 180px;
}

/* line 6, resources/assets/styles/layouts/_pharmacies.scss */

.apotheken .heading-widget h4 {
  margin-top: 0;
}

/* LISTINGS */

@media screen and (min-width: 989px) {
  /* line 14, resources/assets/styles/layouts/_pharmacies.scss */

  .pharmacists {
    padding-right: 50px !important;
  }
}

/* line 19, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 25, resources/assets/styles/layouts/_pharmacies.scss */

.map-container .icon {
  pointer-events: none;
}

/* line 30, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-contact-details {
  pointer-events: none;
}

/* line 33, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-contact-details .details-container {
  background-color: #fcf5f9;
  max-width: 360px;
  pointer-events: all;
}

/* line 41, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item {
  height: 100%;
}

/* line 44, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item .icon-pharmacy {
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 480px) {
  /* line 44, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .icon-pharmacy {
    width: 48px;
    height: 48px;
  }
}

/* line 54, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 30px;
  line-height: 1.33;
  padding: 0 15px;
  text-align: center;
}

/* line 58, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item .img-wrap {
  min-height: 370px;
}

@media screen and (max-width: 1365px) {
  /* line 58, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .img-wrap {
    min-height: 300px;
  }
}

/* line 67, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item .img-wrap .icon-heading-wrap h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 30px;
  line-height: 1.33;
  padding: 0 15px;
  text-align: center;
}

/* line 73, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item .text-description {
  height: 100%;
  background-color: rgba(207, 45, 74, 0.1);
  padding-top: 185px;
  margin-top: -175px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  text-align: left;
  max-width: 350px;
}

/* line 84, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item .text-description .row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* line 92, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item .text-description .booking-button-container {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

/* line 96, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .pharmacy-item .text-description .col-lg-12.col-md-6.col-12:last-child .pharmacy-spec {
  padding-bottom: 10px;
}

/* line 104, resources/assets/styles/layouts/_pharmacies.scss */

.hub-widget .single-item .img-wrap .icon-heading-wrap .icon.icon-pharmacy {
  width: 50px;
  height: 50px;
}

/* line 110, resources/assets/styles/layouts/_pharmacies.scss */

.email-link,
.tel-link {
  color: #4a4a4a;
}

/* line 114, resources/assets/styles/layouts/_pharmacies.scss */

.spec-text {
  color: #4a4a4a;
}

/* line 117, resources/assets/styles/layouts/_pharmacies.scss */

.spec-text.booking {
  color: #c80205;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
}

/* line 125, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-spec {
  font-size: 18px;
  font-family: "Oxygen", sans-serif;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

/* line 134, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-spec.tel-spec {
  margin-bottom: 10px;
}

/* line 138, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-spec p {
  margin-bottom: 0;
}

/* line 142, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-spec .icon {
  margin-right: 20px;
}

/* line 145, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-spec .icon:before {
  font-size: 35px;
}

/* line 150, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-spec .icon.icon-compass {
  margin-right: 15px;
}

/* line 153, resources/assets/styles/layouts/_pharmacies.scss */

.pharmacy-spec .icon.icon-compass:before {
  font-size: 28px;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 168, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .text-description {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 1365px) {
  /* line 178, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .img-wrap .icon-heading-wrap h3 {
    font-size: 20px;
    line-height: 1.33;
    text-align: center;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 188, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item {
    display: block;
  }

  /* line 192, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .text-description {
    padding-top: 185px;
    max-width: 100%;
    padding-bottom: 0;
    display: block;
    height: auto;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  /* line 203, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .tel-email {
    max-width: 100% !important;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1023px) {
  /* line 215, resources/assets/styles/layouts/_pharmacies.scss */

  .pharmacy-contact-details .details-container {
    max-width: 720px;
    padding: 40px;
  }

  /* line 219, resources/assets/styles/layouts/_pharmacies.scss */

  .pharmacy-contact-details .details-container .pharmacy-spec {
    margin-bottom: 20px;
  }

  /* line 223, resources/assets/styles/layouts/_pharmacies.scss */

  .pharmacy-contact-details .details-container .pharmacy-spec.tel-spec {
    margin-bottom: 20px;
  }

  /* line 227, resources/assets/styles/layouts/_pharmacies.scss */

  .pharmacy-contact-details .details-container .pharmacy-spec.email-spec {
    margin-bottom: 0;
  }

  /* line 231, resources/assets/styles/layouts/_pharmacies.scss */

  .apotheken {
    padding-top: 180px;
  }
}

@media screen and (max-width: 480px) {
  /* line 242, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .img-wrap {
    min-height: 300px;
  }

  /* line 246, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .text-description {
    max-width: 290px;
    padding: 185px 30px 0;
  }

  /* line 250, resources/assets/styles/layouts/_pharmacies.scss */

  .hub-widget .pharmacy-item .text-description .pharmacy-spec {
    margin-bottom: 25px;
  }

  /* line 256, resources/assets/styles/layouts/_pharmacies.scss */

  .apotheken {
    padding-top: 80px;
  }
}

/* line 1, resources/assets/styles/layouts/_jobs.scss */

.excerpt-text {
  font-family: "Oxygen", sans-serif;
  font-size: 17px;
  line-height: 1.29;
  text-align: left;
}

/* line 7, resources/assets/styles/layouts/_jobs.scss */

.file-info {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* line 13, resources/assets/styles/layouts/_jobs.scss */

.job-specs {
  margin-bottom: 30px;
  display: inline-block;
  clear: both;
  width: 100%;
}

@media screen and (min-width: 600px) {
  /* line 21, resources/assets/styles/layouts/_jobs.scss */

  .job-specs > div {
    float: left;
    width: 50%;
  }

  /* line 26, resources/assets/styles/layouts/_jobs.scss */

  .job-specs .job-overview {
    padding-right: 15px;
  }

  /* line 30, resources/assets/styles/layouts/_jobs.scss */

  .job-specs .job-contact-details {
    padding-left: 15px;
  }
}

/* line 37, resources/assets/styles/layouts/_jobs.scss */

.job-spec {
  display: block;
}

@media screen and (min-width: 600px) {
  /* line 40, resources/assets/styles/layouts/_jobs.scss */

  .job-spec > div {
    float: left;
    width: calc(50% - 15px);
  }
}

/* line 46, resources/assets/styles/layouts/_jobs.scss */

.job-spec .label {
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  /* line 46, resources/assets/styles/layouts/_jobs.scss */

  .job-spec .label {
    padding-right: 20px;
    max-width: 180px;
  }
}

/* line 60, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 63, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .thumbnail-container {
  background-color: #ced4da;
  height: 376px;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 72, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .thumbnail-container:after {
  content: "\E827";
  display: block;
  font-size: 8rem;
  color: #ffffff;
  font-family: "fontello", sans-serif;
  position: absolute;
  z-index: 0;
  opacity: 0.4;
}

/* line 83, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .thumbnail-container img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  z-index: 1;
}

/* line 91, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 30px;
}

/* line 96, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .text-container h3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-family: "Demos Next W01 Cn", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.13;
  text-align: left;
  margin-bottom: 20px;
}

/* line 102, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .text-container .job-pharmacy {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 40px 0 20px;
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  line-height: 1.39;
  text-align: left;
}

/* line 107, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .text-container .job-pharmacy a {
  color: #000000;
}

/* line 113, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .text-container .text-description {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  font-family: "Oxygen", sans-serif;
  font-size: 17px;
  line-height: 1.29;
  text-align: left;
}

/* line 118, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .text-container .job-detail-link {
  font-family: "Demos Next W01 Cn", serif;
  font-size: 32px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: left;
  color: #c80205;
}

/* line 134, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .full-text {
  font-size: 17px;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  margin-bottom: 30px;
  line-height: 22px;
  color: #000000;
  min-height: 150px;
}

@media screen and (min-width: 600px) {
  /* line 134, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .full-text {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

/* line 152, resources/assets/styles/layouts/_jobs.scss */

.job-detail .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* line 159, resources/assets/styles/layouts/_jobs.scss */

.job-detail .overline {
  font-family: "Oxygen", sans-serif;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: 0.4px;
  text-align: left;
}

/* line 162, resources/assets/styles/layouts/_jobs.scss */

.job-detail .overline a {
  color: #4a4a4a;
}

/* line 167, resources/assets/styles/layouts/_jobs.scss */

.job-detail .main-heading {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  color: #c80205;
}

/* line 172, resources/assets/styles/layouts/_jobs.scss */

.job-detail .item-text {
  padding: 30px 70px;
}

/* line 177, resources/assets/styles/layouts/_jobs.scss */

.apply-form-field {
  margin-bottom: 20px;
}

/* line 182, resources/assets/styles/layouts/_jobs.scss */

.jobs-form h3 {
  font-family: "Demos Next W01 Medium", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
  color: #c80205;
}

/* line 187, resources/assets/styles/layouts/_jobs.scss */

.jobs-form label {
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
}

/* line 196, resources/assets/styles/layouts/_jobs.scss */

.jobs-form label span {
  margin-bottom: 3px;
}

/* line 201, resources/assets/styles/layouts/_jobs.scss */

.jobs-form .boss--error {
  line-height: normal;
  margin: 0;
  color: #c80205;
  font-weight: bold;
}

/* line 210, resources/assets/styles/layouts/_jobs.scss */

.jobs-preview *,
.job-preview * {
  max-width: 100%;
}

/* line 214, resources/assets/styles/layouts/_jobs.scss */

.jobs-preview .large-image,
.job-preview .large-image {
  min-height: 400px;
  background: #ced4da;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 420px;
  border-top: 20px solid #cf2d4a;
  position: relative;
  z-index: 2;
}

/* line 226, resources/assets/styles/layouts/_jobs.scss */

.jobs-preview .large-image:after,
.job-preview .large-image:after {
  content: "\E827";
  display: block;
  font-size: 8rem;
  color: #ffffff;
  font-family: "fontello", sans-serif;
  position: absolute;
  z-index: 0;
  opacity: 0.4;
}

/* line 237, resources/assets/styles/layouts/_jobs.scss */

.jobs-preview .large-image img,
.job-preview .large-image img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  z-index: 1;
}

/* line 246, resources/assets/styles/layouts/_jobs.scss */

.cv_file_field {
  display: none !important;
}

/* line 250, resources/assets/styles/layouts/_jobs.scss */

.file-info {
  font-size: 18px;
  display: inline-block;
  padding: 10px;
}

/* line 256, resources/assets/styles/layouts/_jobs.scss */

.upload-wrap {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 550px) {
  /* line 256, resources/assets/styles/layouts/_jobs.scss */

  .upload-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* line 265, resources/assets/styles/layouts/_jobs.scss */

.upload-wrap svg {
  height: 40px;
  max-width: 50px;
}

/* line 276, resources/assets/styles/layouts/_jobs.scss */

.jobs-preview *,
.job-preview * {
  max-width: 100%;
}

/* line 284, resources/assets/styles/layouts/_jobs.scss */

body.browser-internet-explorer .jobs-preview *,
body.browser-internet-explorer .job-preview * {
  max-width: unset;
}

/* line 291, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .thumbnail-container:after {
  content: "\E827";
  display: block;
  font-size: 8rem;
  color: #ffffff;
  font-family: "fontello", sans-serif;
  position: absolute;
  z-index: 0;
  opacity: 0.5;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 9rem;
  width: 9rem;
  margin: auto;
  line-height: 9rem;
}

/* line 311, resources/assets/styles/layouts/_jobs.scss */

.jobs-widget .single-item .thumbnail-container,
.job-preview .single-item .thumbnail-container {
  position: relative;
}

/* line 318, resources/assets/styles/layouts/_jobs.scss */

.job-preview .large-image,
.jobs-preview .large-image {
  position: relative;
}

/* line 322, resources/assets/styles/layouts/_jobs.scss */

.job-preview .large-image:after,
.jobs-preview .large-image:after {
  content: "\E827";
  display: block;
  font-size: 8rem;
  color: #ffffff;
  font-family: "fontello", sans-serif;
  position: absolute;
  z-index: 0;
  opacity: 0.4;
  height: 9rem;
  width: 9rem;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 9rem;
  margin: auto;
}

/* line 343, resources/assets/styles/layouts/_jobs.scss */

form#job_application_form {
  display: block;
}

/* line 347, resources/assets/styles/layouts/_jobs.scss */

.jobs-form input.btn,
.jobs-form .comment-form input[type="submit"],
.comment-form .jobs-form input[type="submit"] {
  margin-right: 40px;
}

/* line 351, resources/assets/styles/layouts/_jobs.scss */

.single-item.preview-jobs-item .text-container:before {
  content: "";
  display: block;
  height: 420px;
  width: calc(100% - 30px);
  position: absolute;
  background-color: #cf2d4a;
  left: 15px;
  z-index: 1;
  content: "\E827";
  display: block;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "fontello", sans-serif;
  line-height: 380px;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* line 381, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .single-item .thumbnail-container {
    height: 290px;
  }

  /* line 385, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .apotheke-filter {
    max-width: 100%;
    padding: 0px 50px;
  }

  /* line 390, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .job-preview.has-content {
    margin: 0 -33px;
  }

  /* line 394, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .job-detail .item-text {
    padding: 50px;
    background: #efefef;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1100px) {
  /* line 406, resources/assets/styles/layouts/_jobs.scss */

  .single-item.preview-jobs-item .text-container:before {
    height: 540px;
    line-height: 500px;
  }
}

@media screen and (max-width: 1023px) {
  /* line 417, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .apotheke-filter {
    max-width: 100%;
    padding: 0px 40px;
  }

  /* line 421, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .apotheke-filter span.heading-text {
    font-size: 15px;
  }

  /* line 427, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .single-item .text-container {
    padding: 0;
  }

  /* line 430, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .single-item .text-container .job-pharmacy {
    padding: 0px 0 15px;
  }

  /* line 435, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .single-item .thumbnail-container {
    height: 290px;
  }

  /* line 440, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .job-detail .item-text {
    padding: 40px;
    margin-bottom: 40px;
  }

  /* line 446, resources/assets/styles/layouts/_jobs.scss */

  .single-item.preview-jobs-item .text-container:before {
    display: none;
  }

  /* line 450, resources/assets/styles/layouts/_jobs.scss */

  .jobs-preview .large-image,
  .job-preview .large-image {
    min-height: 300px;
    height: 320px;
    border-top: 0;
  }
}

@media screen and (max-width: 767px) {
  /* line 462, resources/assets/styles/layouts/_jobs.scss */

  .job-detail .main-heading,
  .jobs-form h3 {
    font-size: 33px;
  }

  /* line 466, resources/assets/styles/layouts/_jobs.scss */

  .job-detail .overline {
    font-size: 28px;
  }

  /* line 471, resources/assets/styles/layouts/_jobs.scss */

  .job-preview input[type=reset],
  .job-preview input[type=submit] {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  /* line 478, resources/assets/styles/layouts/_jobs.scss */

  .upload-wrap {
    text-align: center;
  }

  /* line 481, resources/assets/styles/layouts/_jobs.scss */

  .upload-file-btn {
    width: 100%;
  }

  /* line 485, resources/assets/styles/layouts/_jobs.scss */

  .file-info {
    display: block;
    margin: 10px 5px;
  }

  /* line 492, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .job-detail .item-text {
    margin-bottom: 50px;
    padding: 30px 15px;
  }

  /* line 498, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .single-item .thumbnail-container {
    width: 100%;
    max-width: 320px;
    height: 290px;
    margin: auto;
  }

  /* line 505, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .single-item .text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 320px;
    padding: 0;
    margin: auto;
  }

  /* line 517, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .single-item .text-container .job-pharmacy {
    padding: 20px 0 10px;
  }

  /* line 522, resources/assets/styles/layouts/_jobs.scss */

  .jobs-widget .single-item .text-description {
    padding-right: 30px;
    max-width: 100%;
    position: relative;
  }

  /* line 531, resources/assets/styles/layouts/_jobs.scss */

  .apply-form-field {
    margin-bottom: 0;
  }

  /* line 535, resources/assets/styles/layouts/_jobs.scss */

  .jobs-form input.btn,
  .jobs-form .comment-form input[type="submit"],
  .comment-form .jobs-form input[type="submit"] {
    margin-right: 0;
  }

  /* line 539, resources/assets/styles/layouts/_jobs.scss */

  .jobs-preview *,
  .job-preview * {
    max-width: inherit;
  }

  /* line 542, resources/assets/styles/layouts/_jobs.scss */

  .single-item.preview-jobs-item .text-container:before {
    height: 360px;
    line-height: 360px;
    max-width: 320px;
    margin: auto !important;
    left: 0;
    right: 0;
  }

  /* line 551, resources/assets/styles/layouts/_jobs.scss */

  .jobs-preview .large-image,
  .job-preview .large-image {
    min-height: 10px;
    height: auto;
    border-top: 10px solid #c80205;
  }

  /* line 555, resources/assets/styles/layouts/_jobs.scss */

  .jobs-preview .large-image img,
  .job-preview .large-image img {
    width: 120%;
  }

  /* line 558, resources/assets/styles/layouts/_jobs.scss */

  .single-item.preview-jobs-item .text-container:before {
    display: block;
  }
}

/* SPECIALS GALLERY SLIDER */

/* line 3, resources/assets/styles/layouts/_specials.scss */

.specials-header-slider {
  background-color: #eeeff3;
}

/* line 5, resources/assets/styles/layouts/_specials.scss */

.specials-header-slider .slider-item {
  background-color: #eeeff3;
}

/* line 10, resources/assets/styles/layouts/_specials.scss */

.margin-bottom {
  margin-bottom: 20px;
}

/* line 14, resources/assets/styles/layouts/_specials.scss */

.item-gallery-nav {
  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;
  width: 340px;
}

/* line 22, resources/assets/styles/layouts/_specials.scss */

.gallery-thumbnail {
  display: block;
}

/* line 24, resources/assets/styles/layouts/_specials.scss */

.gallery-thumbnail img {
  max-width: 60px;
  height: auto;
}

/* line 30, resources/assets/styles/layouts/_specials.scss */

.icon-large {
  font-size: 85px;
}

/* SPECIALS GRID */

/* line 36, resources/assets/styles/layouts/_specials.scss */

.special-preview {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

/* line 45, resources/assets/styles/layouts/_specials.scss */

.special-preview.has-content {
  max-height: 3000px;
}

/* line 3, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* line 8, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

/* line 13, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar-thumb {
  background: #c80205;
  border: 0px none #ffffff;
  border-radius: 0px;
}

/* line 19, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar-thumb:hover {
  background: #960104;
}

/* line 23, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar-thumb:active {
  background: #960104;
}

/* line 27, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar-track {
  background: #ebebeb;
  border: 0px none #ffffff;
  border-radius: 0px;
}

/* line 33, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar-track:hover {
  background: #ebebeb;
}

/* line 37, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar-track:active {
  background: #ebebeb;
}

/* line 41, resources/assets/styles/components/_scrollbars.scss */

* ::-webkit-scrollbar-corner {
  background: transparent;
}

/* line 1, resources/assets/styles/layouts/_masonry.scss */

.masonry-grid {
  max-width: 1140px;
  margin: 0 auto;
}

/* line 6, resources/assets/styles/layouts/_masonry.scss */

.grid-item {
  width: 360px;
  float: left;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  /* line 6, resources/assets/styles/layouts/_masonry.scss */

  .grid-item {
    right: 0;
    margin: 0 auto;
    float: none;
  }
}

/* line 22, resources/assets/styles/layouts/_masonry.scss */

.grid-item:not(.post-opened):hover .item-thumbnail img {
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  /* line 37, resources/assets/styles/layouts/_masonry.scss */

  .grid-item.post-opened.full-width-size {
    width: 100%;
    max-width: 1140px;
  }

  /* line 40, resources/assets/styles/layouts/_masonry.scss */

  .grid-item.post-opened.full-width-size .full-width-image {
    display: block;
  }

  /* line 44, resources/assets/styles/layouts/_masonry.scss */

  .grid-item.post-opened.full-width-size .thumbnail-original {
    display: none;
  }
}

/* line 50, resources/assets/styles/layouts/_masonry.scss */

.grid-item.post-opened.normal-size {
  /* Create close button */
}

/* line 53, resources/assets/styles/layouts/_masonry.scss */

.grid-item.post-opened.normal-size .rotpunkt-table td,
.grid-item.post-opened.normal-size .rotpunkt-table tr,
.grid-item.post-opened.normal-size .rotpunkt-table tbody {
  display: block;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* line 64, resources/assets/styles/layouts/_masonry.scss */

.grid-item.post-opened.normal-size .item-thumbnail {
  position: relative;
  overflow: hidden;
}

/* line 74, resources/assets/styles/layouts/_masonry.scss */

.grid-item .post-content {
  padding-left: 0;
}

/* line 81, resources/assets/styles/layouts/_masonry.scss */

.post-opened .item-thumbnail {
  border: 3px solid #000;
}

/* line 84, resources/assets/styles/layouts/_masonry.scss */

.post-opened .item-thumbnail:before {
  content: '';
  display: none;
}

/* line 90, resources/assets/styles/layouts/_masonry.scss */

.post-opened .thumbnail-text {
  display: none;
}

@media screen and (min-width: 767px) {
  /* line 97, resources/assets/styles/layouts/_masonry.scss */

  .post-opened.full-width-size .item-thumbnail:before {
    content: '';
    display: none;
  }
}

/* line 107, resources/assets/styles/layouts/_masonry.scss */

.item-thumbnail {
  overflow: hidden;
}

/* line 110, resources/assets/styles/layouts/_masonry.scss */

.item-thumbnail img {
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* line 146, resources/assets/styles/layouts/_masonry.scss */

.expanded {
  color: #4a4a4a;
  font-family: "Oxygen", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.56;
  text-align: left;
  line-height: 25px;
}

/* line 152, resources/assets/styles/layouts/_masonry.scss */

.expanded .heading .overline {
  font-family: "Oxygen", sans-serif;
  font-size: 15px;
  line-height: 1.26;
  letter-spacing: 0.4px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  min-width: 250px;
  font-size: 20px;
  font-family: "Oxygen-bold", sans-serif;
}

/* line 158, resources/assets/styles/layouts/_masonry.scss */

.expanded .heading .main-heading {
  font-family: "Demos Next W01 Regular", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  text-align: left;
}

/* line 163, resources/assets/styles/layouts/_masonry.scss */

.expanded .close-btn {
  position: absolute;
  right: 15px;
  top: 0px;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  font-family: sans-serif;
}

/* line 174, resources/assets/styles/layouts/_masonry.scss */

.expanded .close-btn span {
  font-size: 60px;
  color: #000000;
}

/* line 181, resources/assets/styles/layouts/_masonry.scss */

.scrolling {
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  overflow: visible;
}

/* line 188, resources/assets/styles/layouts/_masonry.scss */

.scrolling .tags {
  margin-top: 0;
  padding-top: 0;
}

@media screen and (min-width: 767px) {
  /* line 195, resources/assets/styles/layouts/_masonry.scss */

  .normal-size .scrolling {
    max-height: 760px !important;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media screen and (max-width: 1100px) {
  /* line 210, resources/assets/styles/layouts/_masonry.scss */

  .masonry-grid {
    max-width: 740px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  /* line 222, resources/assets/styles/layouts/_masonry.scss */

  .grid-item {
    right: 0;
    margin: 0 auto;
    float: none;
    position: static !important;
    width: 100%;
  }
}

/* line 2, resources/assets/styles/layouts/_single_pharmacy.scss */

.single-pharmacy section#ApothekeTitel {
  padding-top: 180px;
}

@media screen and (max-width: 1100px) {
  /* line 2, resources/assets/styles/layouts/_single_pharmacy.scss */

  .single-pharmacy section#ApothekeTitel {
    padding-top: 140px;
  }
}

@media screen and (max-width: 769px) {
  /* line 2, resources/assets/styles/layouts/_single_pharmacy.scss */

  .single-pharmacy section#ApothekeTitel {
    padding-top: 120px;
  }
}

@media screen and (max-width: 480px) {
  /* line 2, resources/assets/styles/layouts/_single_pharmacy.scss */

  .single-pharmacy section#ApothekeTitel {
    padding-top: 100px;
  }
}

/* line 1, resources/assets/styles/layouts/_custom_items.scss */

.custom-item {
  /* Read more blocks */
}

/* line 3, resources/assets/styles/layouts/_custom_items.scss */

.custom-item .full-width-image {
  display: none;
}

/* line 7, resources/assets/styles/layouts/_custom_items.scss */

.custom-item .item-thumbnail {
  position: relative;
}

/* line 11, resources/assets/styles/layouts/_custom_items.scss */

.custom-item .item-thumbnail .thumbnail-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  width: 100%;
  padding: 20px 40px 20px 20px;
  color: #ffffff;
}

/* line 20, resources/assets/styles/layouts/_custom_items.scss */

.custom-item .item-thumbnail .thumbnail-text p {
  margin-bottom: 0;
}

/* line 24, resources/assets/styles/layouts/_custom_items.scss */

.custom-item .item-thumbnail .thumbnail-text a {
  color: #ffffff;
}

/* line 34, resources/assets/styles/layouts/_custom_items.scss */

.custom-item .read-more-blocks {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

/* line 39, resources/assets/styles/layouts/_custom_items.scss */

.custom-item .read-more-blocks i {
  border: 2px solid #ffffff;
  width: 11px;
  height: 11px;
  display: block;
  margin: 10px 0 0;
}

/* line 52, resources/assets/styles/layouts/_custom_items.scss */

.browser-chrome .custom-item .item-thumbnail .thumbnail-text p,
.browser-safari .custom-item .item-thumbnail .thumbnail-text p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 52px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* line 63, resources/assets/styles/layouts/_custom_items.scss */

.load-post {
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  /* line 8, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .header #fixed-nav .fixed-nav-item {
    font-size: 16px;
    min-height: 50px;
    line-height: 50px;
  }

  /* line 14, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .modal-kundenkarte {
    padding: 6vh 0;
  }

  /* line 21, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .hub-widget .single-item.pharmacy-item {
    display: block;
    height: auto;
  }

  /* line 25, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .hub-widget .single-item.pharmacy-item .text-description {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* line 30, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .hub-widget .single-item.pharmacy-item .pharmacy-spec {
    display: block;
  }

  /* line 33, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .hub-widget .single-item.pharmacy-item .pharmacy-spec .icon:before {
    font-size: 26px;
  }

  /* line 42, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .hub-widget .single-item {
    display: block;
  }

  /* line 46, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .jobs-widget .single-item .text-container {
    padding: 30px 20px;
  }

  /* line 50, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .jobs-widget .single-item .text-container .job-pharmacy {
    padding: 0 0 20px;
  }

  /* line 56, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider.is-header .container,
  .browser-ipad .specials-header-slider.is-header .two-column-carousel .tns-outer,
  .two-column-carousel .browser-ipad .specials-header-slider.is-header .tns-outer {
    max-width: 100%;
    padding: 0 10px;
  }

  /* line 65, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-hub-widget .special-item .special-label-block {
    margin: -50px auto 0;
  }

  /* line 69, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-hub-widget .special-item .special-thumbnail {
    position: relative;
  }

  /* line 73, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .item.slider.slider_gallery-item .special-image {
    z-index: 0;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: initial;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    overflow: hidden;
    height: 80vh;
    position: relative;
  }

  /* line 92, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .tns-controls button {
    padding: 0 10px;
  }

  /* line 97, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image img {
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    min-height: 10px !important;
    width: 100% !important;
    height: auto !important;
  }

  /* line 106, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-hub-widget .special-item .special-thumbnail img.attachment-post_thumbnail {
    -webkit-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1023px) {
  /* line 117, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials_carousel-widget .tns-outer .tns-nav {
    top: 620px;
  }

  /* line 122, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .tel-email {
    width: 100% !important;
    max-width: 100%;
  }

  /* line 127, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .pharmacy-spec.tel-spec {
    margin-bottom: 10px;
    display: inline-block;
    width: 51%;
  }

  /* line 133, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .pharmacy-spec.email-spec {
    display: inline-block;
    width: 48%;
  }

  /* line 138, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .hub-widget .pharmacy-item {
    display: block;
    margin-bottom: 30px;
  }

  /* line 143, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .jobs-widget .single-item .text-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding: 0;
  }

  /* line 148, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .hub-widget .single-item .read-more-blocks {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: -120px;
  }

  /* line 157, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .tns-controls {
    width: 29%;
  }

  /* line 161, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .tns-controls button {
    padding: 0 10px;
  }

  /* line 165, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .slider-item {
    height: auto;
  }

  /* line 168, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .slider-item .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 172, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .slider-item .col-lg-6.col-md-12.special-text,
  .browser-ipad .specials-header-slider .slider-item .two-column-carousel .tns-outer .col-md-12.special-text.tns-nav,
  .two-column-carousel .tns-outer .browser-ipad .specials-header-slider .slider-item .col-md-12.special-text.tns-nav {
    position: relative;
    display: block;
    width: 100% !important;
    height: auto !important;
    min-height: 50vh;
  }

  /* line 183, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-hub-widget .special-item .special-thumbnail {
    height: 350px;
    max-width: 350px;
    float: left;
    clear: both;
    margin-bottom: 30px;
  }

  /* line 191, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-hub-widget .special-item .special-label-block {
    width: 50%;
    margin-top: 100px;
    margin-left: -40px;
    min-height: 1px;
    float: left;
  }

  /* line 199, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-hub-widget .special-item .special-label-block span.read-more-specials-blocks {
    margin-bottom: 0 !important;
  }

  /* line 203, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .special-preview {
    width: 100%;
  }

  /* line 207, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-hub-widget .special-item .special-thumbnail img.attachment-post_thumbnail {
    -webkit-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }

  /* line 211, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .item.slider.slider_gallery-item .special-image {
    width: 100%;
  }

  /* line 215, resources/assets/styles/common/_ipad.scss */

  .browser-ipad .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image img {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

/* line 1, resources/assets/styles/common/_ie.scss */

.browser-internet-explorer {
  /* Aktionen */
  /*Jobs*/
  /*maps */
}

/* line 3, resources/assets/styles/common/_ie.scss */

.browser-internet-explorer .specials-header-slider .item.slider.slider_gallery-item .slider-item .special-image {
  padding: 0;
}

/* line 4, resources/assets/styles/common/_ie.scss */

.browser-internet-explorer .specials-hub-widget .special-item .special-thumbnail img.attachment-post_thumbnail {
  -webkit-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}

/* line 6, resources/assets/styles/common/_ie.scss */

.browser-internet-explorer .jobs-widget .single-item .thumbnail-container {
  height: 340px;
  padding: 0;
}

/* line 9, resources/assets/styles/common/_ie.scss */

.browser-internet-explorer .desktop-nav-map {
  z-index: 5;
}

/* line 12, resources/assets/styles/common/_ie.scss */

.browser-internet-explorer .read-more-blocks-click {
  width: 90%;
}

/* line 70, stdin */

div#wpadminbar {
  display: none;
}


/*# sourceMappingURL=main.css.map*/