/* required styles */

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

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.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-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;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

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


/* cursors */

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

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

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

/* visual tweaks */

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


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	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,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

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

/* zoom control */

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

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


/* layers control */

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

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(/images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.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;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.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 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-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;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-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-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-interactive {
	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;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}
.leaflet-control-fullscreen a {
  background:#fff url(/fullscreen.png) no-repeat 0 0;
  background-size:26px 52px;
  }
  .leaflet-touch .leaflet-control-fullscreen a {
    background-position: 2px 2px;
    }
  .leaflet-fullscreen-on .leaflet-control-fullscreen a {
    background-position:0 -26px;
    }
  .leaflet-touch.leaflet-fullscreen-on .leaflet-control-fullscreen a {
    background-position: 2px -24px;
    }

/* Do not combine these two rules; IE will break. */
.leaflet-container:-webkit-full-screen {
  width:100%!important;
  height:100%!important;
  }
.leaflet-container.leaflet-fullscreen-on {
  width:100%!important;
  height:100%!important;
  }

.leaflet-pseudo-fullscreen {
  position:fixed!important;
  width:100%!important;
  height:100%!important;
  top:0!important;
  left:0!important;
  z-index:99999;
  }

@media
  (-webkit-min-device-pixel-ratio:2),
  (min-resolution:192dpi) {
    .leaflet-control-fullscreen a {
      background-image:url(/fullscreen@2x.png);
    }
  }
.leaflet-fullscreen-icon {
	background-image: url(/icon-fullscreen.svg);
	background-size: 26px 52px;
}

.leaflet-fullscreen-icon.leaflet-fullscreen-on {
	background-position: 0 -26px;
}

.leaflet-touch .leaflet-fullscreen-icon {
	background-position: 2px 2px;
}

.leaflet-touch .leaflet-fullscreen-icon.leaflet-fullscreen-on {
	background-position: 2px -24px;
}

/* Safari still needs this vendor-prefix: https://caniuse.com/mdn-css_selectors_fullscreen */
/* stylelint-disable-next-line selector-no-vendor-prefix */
.leaflet-container:-webkit-full-screen,
.leaflet-container:fullscreen {
	width: 100% !important;
	height: 100% !important;
	z-index: 99999;
}

.leaflet-pseudo-fullscreen {
	position: fixed !important;
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 99999;
}
@-webkit-keyframes leaflet-gestures-fadein{0%{opacity:0}100%{opacity:1}}@keyframes leaflet-gestures-fadein{0%{opacity:0}100%{opacity:1}}.leaflet-container:after{-webkit-animation:leaflet-gestures-fadein .8s backwards;animation:leaflet-gestures-fadein .8s backwards;color:#fff;font-family:Roboto,Arial,sans-serif;font-size:22px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:15px;position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.5);z-index:461;pointer-events:none}.leaflet-gesture-handling-scroll-warning:after,.leaflet-gesture-handling-touch-warning:after{-webkit-animation:leaflet-gestures-fadein .8s forwards;animation:leaflet-gestures-fadein .8s forwards}.leaflet-gesture-handling-touch-warning:after{content:attr(data-gesture-handling-touch-content)}.leaflet-gesture-handling-scroll-warning:after{content:attr(data-gesture-handling-scroll-content)}
:root {
	--top-bar-height: 50px;
	--nav-text-color: #ececec;
	--tab-color: #ddd;
	--link-color: #1EAEDB;
	--link-hover-color: #0FA0CE;
}
/**
 * 1. Set default font family.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
	font-family: "Open Sans"; /* 1 */
	-ms-text-size-adjust: 100%; /* 2 */
	-webkit-text-size-adjust: 100%; /* 2 */
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	font-size: 1em; /* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.6;
	font-weight: 400;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

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

main {
	position: relative;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
}


hr {
	/* Address differences between Firefox and other browsers. */
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	
	margin-top: 3rem;
	margin-bottom: 3.5rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1;
}


/* Spacing */

button,
.button {
	margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
	margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
	margin-bottom: 1em;
}

.container {
	min-height: 100%;
}

.bottom-push {
	height: 400px;
}
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	height: 38px;
	padding: 0 30px;
	color: #555;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border-radius: 4px;
	border: 1px solid #bbb;
	cursor: pointer;
	box-sizing: border-box;
	
	&.large {
		height: 50px;
		line-height: 50px;
	}
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	color: #333;
	border-color: #888;
	outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	color: #FFF;
	background-color: #33C3F0;
	border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	color: #FFF;
	background-color: #1EAEDB;
	border-color: #1EAEDB;
}

.button.button-danger,
button.button-danger,
input[type="submit"].button-danger,
input[type="reset"].button-danger,
input[type="button"].button-danger {
	color: #FFF;
	background-color: #B70C0C;
	border-color: #B70C0C;
}

.button.button-danger:hover,
button.button-danger:hover,
input[type="submit"].button-danger:hover,
input[type="reset"].button-danger:hover,
input[type="button"].button-danger:hover,
.button.button-danger:focus,
button.button-danger:focus,
input[type="submit"].button-danger:focus,
input[type="reset"].button-danger:focus,
input[type="button"].button-danger:focus {
	color: #FFF;
	background-color: #E63B3B;
	border-color: #B70C0C;
}

.button.small {
	line-height: 22px;
	height: 22px;
}

.button.tight {
	padding: 0 6px;
}
#error_explanation {
	background: #ffeded;
	border: solid 2px #f00;
	padding: 1em;
	border-radius: 4px;

	h1, h2, h3, h4 {
		margin-top: 0;
		border: none;
	}
}
/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
	color: inherit; /* 1 */
	font: inherit; /* 2 */
	margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
	overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
	text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button; /* 2 */
	cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
	cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
	line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

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

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box; /* 2 */
	box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

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

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
	border: 0; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
	overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
	font-weight: bold;
}


input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="file"]
textarea,
select {
	height: 38px;
	padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
	
	&.large {
		height: 50px;
	}
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="file"]
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="file"]:focus
textarea:focus,
select:focus {
	border: 1px solid #33C3F0;
	outline: 0;
}

label,
legend {
	display: block;
	margin-bottom: .5rem;
	font-weight: 600;
}

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

input[type="checkbox"],
input[type="radio"] {
	display: inline;
}

label > .label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal;
}

label.inline {
	display: inline;
}


input[type="file"] {
	display: inline-block;
	padding: 0 30px;
	color: #555;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	cursor: pointer;
	
	&.large {
		line-height: 50px;
	}
}

form {
	.field {
		margin-top: 1em;
		margin-bottom: 1em;
	}
	
	.actions {
		margin-top: 1em;
	}
}
.grid-container {
	display: grid;
	grid-template-columns: auto;
	
	@media screen and (min-width: 750px) {
		grid-template-columns: 50% 50%;
	}
	
	@media screen and (min-width: 1000px) {
		grid-template-columns: 50% 50%;
	}
	
	article {
		margin: 0.5em;
	}
}

.responsive-container {
	.column, .columns {
		width: 100%;
		float: left;
		box-sizing: border-box;
		margin: 0;
	}
	
	@media screen and (min-width: 1200px) {
		.column, .columns {
			margin-left: 4%;
		}
		
		.column:first-child, .columns:first-child {
			margin-left: 0;
		}
		
		.four.columns {
			width: 30.6666666667%;
		}
		
		.six.columns {
			width: 48%;
		}
	}
}
a {
	background-color: transparent; /* Remove the gray background color from active links in IE 10. */
	color: #1EAEDB;
	
	&:active, &:hover {
		outline: 0; /* Improve readability when focused and also mouse hovered in all browsers. */
	}
	
	&:hover {
		color: #0FA0CE;
	}
	
	&.static-color {
		&:visited {
			color: inherit;
		}
	}
}
ul {
	list-style: disc inside;
}

ul.blank {
	list-style: none;
}

ol {
	list-style: decimal inside;
}

ol, ul {
	padding-left: 0;
	margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
	margin: 1.5rem 0 1.5rem 3rem;
	font-size: 90%;
}

li {
	margin-bottom: 1rem;
}
.modal-container {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000000b0;
	z-index: 9999;
	
	article {
		width: 40em;
		margin: 10em auto;
		background: #fff;
		border: solid 2px #ececec;
		border-radius: 5px;
		padding: 2em;
		
		header {
			font-size: 1.2em;
			font-weight: bold;
			border-bottom: solid 1px #ececec;
		}
		
		dl {
			text-align: left;
		}
		
		dt {
			margin-top: 1em;
		}
	}
}
#notice {
	color: green;
}

p.notice {
	border: solid 1px #8bc56d;
	background: #d4ffd7;
	padding: 0.5em;
	border-radius: 5px;
}

p.alert {
	border: solid 1px #b93b3b;
	background: #ffd4d4;
	padding: 0.5em;
	border-radius: 5px;
}

#messages {
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	z-index: 1;
}
section.body {
	
}

article.main {
	max-width: 1000px;
	margin: 0 auto;
	
	.grid-container {
		@media screen and (min-width: 1000px) {
			grid-template-columns: 50% 50%;
		}
	}
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
	overflow: hidden;
}


svg.icon {
	width: 1em;
	height: 1em;
	top: 0.22em;
	position: relative;
	display: inline-flex;
	align-self: center;
	fill: currentColor;
	
	&.tiny {
		width: 0.3em;
		height: 0.3em;
		top: 0.13em;
	}
	
	&.large {
		width: 2em;
		height: 2em;
	}
	
	&.huge {
		width: 8em;
		height: 8em;
	}
	
	&.positive {
		fill: green;
	}
	
	&.negative {
		fill: red;
	}
}
/**
 * Remove most spacing between table cells.
 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #E1E1E1;
	
	&:first-child {
		padding-left: 0;
	}
	
	&:last-child {
		padding-right: 0;
	}
}
trix-editor {
	min-height: 20em;
}

.trix-content {
	h1 {
		font-weight: normal;
		font-size: 1.5em;
	}
}

.trix-content {
  .attachment-gallery {
    > action-text-attachment,
    > .attachment {
      flex: 1 0 33%;
      padding: 0 0.5em;
      max-width: 33%;
    }

    &.attachment-gallery--2,
    &.attachment-gallery--4 {
      > action-text-attachment,
      > .attachment {
        flex-basis: 50%;
        max-width: 50%;
      }
    }
  }

  action-text-attachment {
    .attachment {
      padding: 0 !important;
      max-width: 100% !important;
    }
  }
}
h1, h2, h3, h4 {
	/* font-family: "Roboto Slab", sans-serif; */
}

h1 {
	font-weight: bold;
	color: #162944;
}

h2 {
	font-size: 2em;
	color: #11183a;
	border-bottom: solid 2px #ececec;
	
	&.minor {
		font-size: 2em;
		font-family: sans-serif;
		border: none;
	}
	
	&.status {
		color: #1b1b1b;
		font-size: 1em;
		font-weight: bold;
		letter-spacing: 0.1em;
		font-family: sans-serif;
		margin-bottom: 1em;
	}
}

h3 {
	font-size: 1.1em;
	font-weight: bold;
	font-family: sans-serif;
	margin-top: 1em;
	color: #333;
	
	a, a:visited {
		color: #b35c1f;
	}
	
	&.name {
		font-size: 2em;
		font-weight: normal;
		margin: 0;
		color: #11183a;
	}
}

h4 {
	letter-spacing: 0.06em;
}

.page-title {
	text-align: center;
}

p.center {
	text-align: center;
}

dt {
	font-weight: bold;
}

.full-width {
	width: 100%;
	box-sizing: border-box;
}

.dim {
	color: #6d6d6d;
}

.rotate-45 {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.noborder {
	border: none;
}
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none; }

trix-toolbar * {
  box-sizing: border-box; }

trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto; }

trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px; }
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 1.5vw; }
    @media (max-width: 768px) {
      trix-toolbar .trix-button-group:not(:first-child) {
        margin-left: 0; } }

trix-toolbar .trix-button-group-spacer {
  flex-grow: 1; }
  @media (max-width: 768px) {
    trix-toolbar .trix-button-group-spacer {
      display: none; } }

trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent; }
  trix-toolbar .trix-button:not(:first-child) {
    border-left: 1px solid #ccc; }
  trix-toolbar .trix-button.trix-active {
    background: #cbeefa;
    color: black; }
  trix-toolbar .trix-button:not(:disabled) {
    cursor: pointer; }
  trix-toolbar .trix-button:disabled {
    color: rgba(0, 0, 0, 0.125); }
  @media (max-width: 768px) {
    trix-toolbar .trix-button {
      letter-spacing: -0.01em;
      padding: 0 0.3em; } }

trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px; }
  @media (max-width: 768px) {
    trix-toolbar .trix-button--icon {
      height: 2em;
      max-width: calc(0.8em + 3.5vw); } }
  trix-toolbar .trix-button--icon::before {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.6;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    @media (max-width: 768px) {
      trix-toolbar .trix-button--icon::before {
        right: 6%;
        left: 6%; } }
  trix-toolbar .trix-button--icon.trix-active::before {
    opacity: 1; }
  trix-toolbar .trix-button--icon:disabled::before {
    opacity: 0.125; }

trix-toolbar .trix-button--icon-attach::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  top: 8%;
  bottom: 4%; }

trix-toolbar .trix-button--icon-bold::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-italic::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-link::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-strike::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-code::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-number-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-undo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-redo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

trix-toolbar .trix-dialogs {
  position: relative; }

trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5; }

trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none; }
  trix-toolbar .trix-input--dialog.validate:invalid {
    box-shadow: #F00 0px 0px 1.5px 1px; }

trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none; }

trix-toolbar .trix-dialog--link {
  max-width: 600px; }

trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline; }
  trix-toolbar .trix-dialog__link-fields .trix-input {
    flex: 1; }
  trix-toolbar .trix-dialog__link-fields .trix-button-group {
    flex: 0 0 content;
    margin: 0; }

trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
  background: none; }

trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection, trix-editor [data-trix-mutable] ::selection {
  background: none; }

trix-editor .attachment__caption-editor:focus[data-trix-mutable]::-moz-selection {
  background: highlight; }

trix-editor .attachment__caption-editor:focus[data-trix-mutable]::selection {
  background: highlight; }

trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent; }

trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight; }

trix-editor .attachment {
  position: relative; }
  trix-editor .attachment:hover {
    cursor: default; }

trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text; }

trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in; }
  trix-editor .attachment__progress[value="100"] {
    opacity: 0; }

trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center; }

trix-editor .trix-button-group {
  display: inline-flex; }

trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent; }
  trix-editor .trix-button:not(:first-child) {
    border-left: 1px solid #ccc; }
  trix-editor .trix-button.trix-active {
    background: #cbeefa; }
  trix-editor .trix-button:not(:disabled) {
    cursor: pointer; }

trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25); }
  trix-editor .trix-button--remove::before {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.7;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%; }
  trix-editor .trix-button--remove:hover {
    border-color: #333; }
    trix-editor .trix-button--remove:hover::before {
      opacity: 1; }

trix-editor .attachment__metadata-container {
  position: relative; }

trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px; }
  trix-editor .attachment__metadata .attachment__name {
    display: inline-block;
    max-width: 100%;
    vertical-align: bottom;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  trix-editor .attachment__metadata .attachment__size {
    margin-left: 0.2em;
    white-space: nowrap; }

.trix-content {
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word; }
  .trix-content * {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .trix-content h1 {
    font-size: 1.2em;
    line-height: 1.2; }
  .trix-content blockquote {
    border: 0 solid #ccc;
    border-left-width: 0.3em;
    margin-left: 0.3em;
    padding-left: 0.6em; }
  .trix-content [dir=rtl] blockquote,
  .trix-content blockquote[dir=rtl] {
    border-width: 0;
    border-right-width: 0.3em;
    margin-right: 0.3em;
    padding-right: 0.6em; }
  .trix-content li {
    margin-left: 1em; }
  .trix-content [dir=rtl] li {
    margin-right: 1em; }
  .trix-content pre {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    font-family: monospace;
    font-size: 0.9em;
    padding: 0.5em;
    white-space: pre;
    background-color: #eee;
    overflow-x: auto; }
  .trix-content img {
    max-width: 100%;
    height: auto; }
  .trix-content .attachment {
    display: inline-block;
    position: relative;
    max-width: 100%; }
    .trix-content .attachment a {
      color: inherit;
      text-decoration: none; }
      .trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
        color: inherit; }
  .trix-content .attachment__caption {
    text-align: center; }
    .trix-content .attachment__caption .attachment__name + .attachment__size::before {
      content: ' \2022 '; }
  .trix-content .attachment--preview {
    width: 100%;
    text-align: center; }
    .trix-content .attachment--preview .attachment__caption {
      color: #666;
      font-size: 0.9em;
      line-height: 1.2; }
  .trix-content .attachment--file {
    color: #333;
    line-height: 1;
    margin: 0 2px 2px 2px;
    padding: 0.4em 1em;
    border: 1px solid #bbb;
    border-radius: 5px; }
  .trix-content .attachment-gallery {
    display: flex;
    flex-wrap: wrap;
    position: relative; }
    .trix-content .attachment-gallery .attachment {
      flex: 1 0 33%;
      padding: 0 0.5em;
      max-width: 33%; }
    .trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
      flex-basis: 50%;
      max-width: 50%; }
/*
 * Provides a drop-in pointer for the default Trix stylesheet that will format the toolbar and
 * the trix-editor content (whether displayed or under editing). Feel free to incorporate this
 * inclusion directly in any other asset bundle and remove this file.
 *

*/

/*
 * We need to override trix.css’s image gallery styles to accommodate the
 * <action-text-attachment> element we wrap around attachments. Otherwise,
 * images in galleries will be squished by the max-width: 33%; rule.
*/
.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}
main.area {
	div.tabs {
		line-height: 2.0;
		
		@media screen and (min-width: 750px) {
			line-height: 2.2;
		}
	}
}
main.collection {
	.map {
		height: 600px;
	}
	
	article.collection {
		max-width: 900px;
		
		>section.info {
			font-size: 1em;
			padding: 1em 0;
			margin-top: 2em;
			
		}
		
		h1 {
			text-align: center;
			margin-bottom: 0;
		}
	}
	
	div.tabs {
		line-height: 1.55;
		
		@media screen and (min-width: 750px) {
			line-height: 2.2;
		}
	}
}
main.comments {
	max-width: 900px;
}

article.comment {
	header {
		font-size: 0.9em;
		color: #525252;
		margin-bottom: 0.5em;
		
		span {
			margin-right: 1em;
		}
	}
	
	padding: 3em 0;
	border-bottom: solid 1px #e1e1e1;
	
	&.new_comment {
		background: #fffec5;
		-moz-transition: none;
		-o-transition: none;
		-webkit-transition: none;
		transition: none;
	}

	
	background: #fff;
	-moz-transition: all 2s ease-in;
	-o-transition: all 2s ease-in;
	-webkit-transition: all 2s ease-in;
	transition: all 2s ease-in;
	
	&.with_commentable {
		aside {
			display: none;
			
			@media screen and (min-width: 750px) {
				display: block;
			}
		}
	}
}

#comments {
	form {
		input[type="submit"]:disabled {
			background-color: #64767B;
			border-color: #2F525E;
		}
	}
}
article.dispute_message_response {
	margin-bottom: 1em;
	padding: 1em;
	border: solid 1px #e8f5e7;
	border-radius: 4px;
	background: #f4fff1;
}
article.dispute_message {
	padding: 1em;
	border: solid 1px #e8e8e8;
	border-radius: 4px;
	background: #f1f1f1;
}
.leaflet-bar a {
	width: 30px;
	height: 30px;
}

.leaflet-control-layers-toggle {
	background-image: url(/assets/layers-0e356f4d554162eb71f127f50460dbc55d405027189ebe90b20729ef18d13d36.png);
	background-size: 21px;
	width: 30px;
	height: 30px;
}


.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/assets/layers-0e356f4d554162eb71f127f50460dbc55d405027189ebe90b20729ef18d13d36.png);
	width: 26px;
	height: 26px;
	background-size: 21px;
}

.highlight-section-heading {
	text-transform: uppercase;
	margin-bottom: 0.5em;
	font-weight: bold;
}

.leaflet-control-search {
	border: 2px solid rgba(0,0,0,0.2);
	box-shadow: none !important;
	float: right !important;
	margin-left: 0;
}

.leaflet-control-search.search-load .search-input {
	background: url(/assets/loader-9b5b669f205f96b69b7d37e34ea2735b7a0879345bd2f6191ba8906478e23cd6.gif) no-repeat center right #fff !important;
}

.leaflet-control-search .search-cancel {
	background: url(/assets/search-icon-7df9f07c2480c5642501c998e15916404ffd034be7ec4affa09d2f016cb64dc0.png) no-repeat -4px -46px !important;
}


.leaflet-control-search .search-button {
	background: url(/assets/search-icon-7df9f07c2480c5642501c998e15916404ffd034be7ec4affa09d2f016cb64dc0.png) 3px 5px #fff !important;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
}

.leaflet-control-search .search-button:hover {
	background: url(/assets/search-icon-7df9f07c2480c5642501c998e15916404ffd034be7ec4affa09d2f016cb64dc0.png) 3px 5px #f5f5f5 !important;
	background-repeat: no-repeat;
}

.leaflet-control-layers-toggle {
	background-size: 21px;
	width: 30px !important;
	height: 30px !important;
}

.leaflet-container {
	background: rgba(255, 255, 255, 0) !important;
	background: red;
}

.leaflet-control-fullscreen a {
	background-image: url(/assets/icon-fullscreen-889a14b66b7de0f55764d09af625f89440accf1c5aa21fd77f95a32fe0197535.png);
	background-size: auto;
	background-position: center !important;
}

.leaflet-control-zoom-fullscreen {
	background-image: url(/assets/icon-fullscreen-889a14b66b7de0f55764d09af625f89440accf1c5aa21fd77f95a32fe0197535.png);
}

.leaflet-control-locate a {
	background-image: url(/assets/icon-mapmarker-7ece18d066959d08943b372512a429a00b09ad8f90e4dbcbd72604f4bf51b9ce.png);
}
article.list {
}
main.route, main.place, main.collection, main.search, main.track.edit {
	section.map {
		height: 200px;
		
		@media screen and (min-width: 750px) {
			height: 400px;
		}
		
		@media screen and (min-width: 1000px) {
			height: 600px;
		}
	}
}

#map {
	height: 100%;
	width: 100%;
}
.top_bar {
	background: #000;
	height: var(--top-bar-height);
	position: relative;
	margin-bottom: 0;
}

#main_menu {
	line-height: var(--top-bar-height);
}

nav {
	ul {
		list-style-type: none;
		margin: 0;
		
		.button {
			margin-bottom: 0;
		}
	}
	
	
}

nav.menu {
	section.left {
		display: inline;
	}
	
	section.right {
		display: inline;
		float: right;
		margin-right: 0.5em;
	}
}

.mobile_menu {
	display: none;
	padding: 2em;
	left: 0;
	right: 0;
	min-height: 200px;
	border: solid 2px black;
	background: #2d2d2d;
	color: #ececec;
	z-index: 9999;
	position: absolute;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	
	.menuitem {
		display: block;
	}
}


nav.right {
	text-align: right;
}

.menuitem {
	font-size: 0.9em;
	text-transform: uppercase;
	padding: 0 5px;
	font-weight: bold;
	color: var(--nav-text-color);
	vertical-align: bottom;
	
	svg {
		font-size: 30px;
		padding: 0.1em;
	}
	
	&.right {
		float: right;
	}
	
	a {
		text-decoration: none;
		color: var(--nav-text-color);
		
		&:visited {
			color: var(--nav-text-color);
		}
	}
	
	a.active {
		color: inherit;
		
		svg {
			background: inherit;
			border-radius: 4px;
		}
	}
	
	display: none;
	@media screen and (min-width: 1000px) {
		display: inline;
	}
}

.menuitem.home {
	text-transform: uppercase;
	font-size: 2em;
	color: #f7c500;
	display: inline;
	
	a {
		color: inherit;
	}
}

.menuitem.mobile {
	display: inline;
	
	button {
		border: none;
		color: #ececec;
	}
	
	@media screen and (min-width: 1000px) {
		display: none;
	}
}


div.tabs {
	line-height: 2.2;
}

nav.tabs {
	border-bottom: solid 1px var(--tab-color);
    padding-bottom: 3px;
	font-size: 0.8em;
	margin-top: 1em;
	
	@media screen and (min-width: 750px) {
		font-size: 1em;
		padding-bottom: 0;
	}
	
	a {
		text-decoration: none;
	}
	
	span {
		display: block;
		font-weight: bold;
		margin: 0 0em;
		padding: 0.3em 0.5em;
		
		@media screen and (min-width: 750px) {
			display: inline;
			padding: 7px 1em;
			border-radius: 4px;
			border: solid 1px;
			border-color: #fff;
			border-bottom-color: var(--tab-color);
		}
		
		&:first-of-type {
			margin-left: 0;
		}
		
		&.active {
			border-color: var(--tab-color);
			border-bottom-color: #fff;
			border-bottom-left-radius: 0;
			border-bottom-right-radius: 0;
			
			&:after {
				color: #000;
				content: attr(data-text);
				
				@media screen and (min-width: 750px) {
					content: ""
				}
			}
		}
	}
	
	span.secondary_container {
		border: none;
		padding: 0;
		
		.button {
			width: 100%;
		}
		
		@media screen and (min-width: 750px) {
			margin-top: -10px;
			float: right;
			
			.button {
				width: inherit;
			}
		}
	}
	
	&.force_tabs {
		span {
			display: inline;
			border-radius: 4px;
			border: solid 1px;
			border-color: #fff;
			border-bottom-color: var(--tab-color);
			
			&.active {
				border-color: var(--tab-color);
				border-bottom-color: #fff;
				border-bottom-left-radius: 0;
				border-bottom-right-radius: 0;
			}
		}
	}
	
	&+#tab-content {
		margin-top: 1em;
		div.tab-content {
			display: none;
			
			&.active {
				display: block;
			}
		}
	}
}


footer.page-footer {
	font-size: 0.9em;
	height: 400px;
	background: #f0f0f0;
	color: #000;
	margin-top: 5em;
	padding: 2em;
	
	h2 {
		border: none;
		font-size: 1em;
	}
	
	@media screen and (min-width: 750px) {
		padding-top: 4em;
	}
	
	.grid-container {
		max-width: 900px;
		margin: 0 auto;
		@media screen and (min-width: 750px) {
			grid-template-columns: 50% 50%;
		}
	}
}
main.main {
	
	h1 {
		font-size: 2em;
		margin-top: 1em;
		margin-left: 0.2em;
		margin-right: 0.2em;
		margin-bottom: 0.5em;
		font-weight: normal;
	}
	
	h2 {
		font-size: 1.4em;
		text-align: center;
	}
	
	section.map {
		height: calc(80vh - var(--top-bar-height));
	}
	
	
	
	section.branding {
		margin: 0 auto;
		
		p {
			margin-bottom: 2em;
			text-align: center;
		}
		
		margin-bottom: 4em;
		
		.text-only-search {
			margin: 0 auto;
			width: 90%;
		
			form {
				text-align: center;
				
				label {
					text-align: left;
				}
				
				input[type="text"] {
					display: inline-block;
				}
				
				input[type="submit"] {
					display: inline-block;
				}
			}
		}
	}
	
	section.query-controls {
		h2 {
			margin: 0;
			font-size: 0.7em;
		}
		input[type="checkbox"] {
			width: 18px;
			height: 18px;
		}
		
		label {
			vertical-align: top;
			line-height: 20px;
		}
	}
	
	section.latest {
		.grid-container {
			@media screen and (min-width: 1000px) {
				grid-template-columns: 50% 50%;
			}
		}
	}
	
	section.comments {
		@media screen and (min-width: 1000px) {
			padding-left: 2em;
		}
		
		article.comment {
			padding: 1em;
			border: none;
		}
	}
	
	section.partners {
		img {
			max-width: 100%;
			
			@media screen and (min-width: 750px) {
				margin: 2em;
			}
		}
	}
	
	section.latest, section.bottom {
		.title {
			text-align: left;
			margin-bottom: 1em;
		}
	}
	
	section.bottom {
		.grid-container {
			@media screen and (min-width: 1000px) {
				grid-template-columns: 50% 50%;
			}
		}
	}
}

main.infopage {
	img {
		max-width: 100%;
		border: solid 1px #656565;
		border-radius: 3px;
	}
	
	figcaption {
		font-size: 0.8em;
		font-style: italic;
	}
}
nav.pagination {
	text-align: center;
	margin-top: 1em;
	
	@media screen and (min-width: 750px) {
		text-align: inherit;
	}
	
	span {
		padding: 0.25em 0.5em;
		border: solid 1px #ececec;
		
		&:first-of-type {
			border-top-left-radius: 5px;
			border-bottom-left-radius: 5px;
		}
		
		&:last-of-type {
			border-top-right-radius: 5px;
			border-bottom-right-radius: 5px;
		}
	}
	
	a {
		text-decoration: none;
	}
}

div.pagination {
	margin-bottom: 1em;
}

footer.pagination {
	text-align: center;
}
main.regions {
	max-width: 900px;
}

span.region-link {
	margin-right: 0.3em;
}
article.restricted_area {
	background: #f5f5f5;
	border: solid 1px #ececec;
	border-radius: 4px;
	position: relative;
	padding: 1em;
	margin: 1em;
	
	.title {
		margin: 0;
		margin-bottom: 0.5em;
		border: none;
		font-size: 1.4em;
		color: #000;
	}
	
	section.map {
		height: 600px;
	}
	
	div.map {
		height: 100%;
	}
}

article.single.restricted_area {
	.title {
		font-size: 2.0em;
		margin-bottom: 0.5em;
	}
}
.restriction_notification {
	border: solid 1px #deb315;
	background: #fbeec0;
	border-radius: 4px;
	padding: 1em;
	margin: 1em;
	
	a {
		font-weight: bold;
	}
}
article.route {
	background: #f5f5f5;
	border: solid 1px #ececec;
	border-radius: 4px;
	position: relative;
	padding: 1em;
	margin: 1em;
	
	header {
		.user {
			font-size: 0.8em;
			color: #5d5d5d;
		}
	}
	
	h1 {
		text-align: center;
		margin-bottom: 0;
	}
	
	.title {
		margin: 0;
		border: none;
		font-size: 1.1em;
		color: #000;
	}
	
	img.preview {
		max-width: 100%;
		width: 100%;
	}
	
	section.description {
		margin-top: 0.5em;
		font-size: 0.7em;
		color: #525252;
	}
	
	section.info {
		font-size: 0.8em;
		padding: 1em 0;
		
		div.tabs {
			line-height: 1.5;
			
			@media screen and (min-width: 750px) {
				line-height: 2.3;
			}
		}
		
		@media screen and (min-width: 750px) {
			padding: 0;
			margin: 0 1em;
		}
		
		svg {
			margin-right: 0.5em;
		}
	}
	
	a {
		color: inherit;
		
		&:hover {
			color: $link-hover-color;
		}
	}
	
	.meta {
		text-align: center;
	}
	
	footer {
		margin-top: 0.5em;
		font-size: 0.8em;
		color: #535353;
	}
}

article.single.route {
	background: #fff;
	border: none;
	padding: 0;
	
	time {
		font-size: 1em;
	}
	
	.info {
		font-size: 1em;
		margin-top: 2em;
	}
	
	.link_to_commentable {
		display: none;
	}
}

section.routes {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	
	.tabs {
		padding: 0 0.25em;
		
		@media screen and (min-width: 750px) {
			padding: 0;
		}
	}
}

.chart_container {
	width: 100%;
	height: 200px;
}

.unsaved_changes {
	font-weight: bold;
	font-size: 0.9em;
	margin-bottom: 1em;
	color: #e4309f;
	border: solid 2px #e4309f;
    padding: 0.3em;
    border-radius: 3px;
	
	a {
		color: #e4309f;
		
		&:visited {
			color: #e4309f;
		}
	}
}

.elevation_data_is_being_processed {
	padding: 50px 2em;
	border: dashed 2px #8b8b8b;
	margin-top: 2em;
}

#actions {
	h3 {
		margin-top: 2em;
	}
}

.route_filters {
	text-align: center;
	
	@media screen and (min-width: 750px) {
		text-align: left;
		margin-top: 1em;
		margin-left: 1em;
	}
}
span.routetype {
	background: #fff;
	color: #000;
	padding-top: 0.2em;
	padding-bottom: 0.1em;
	padding-right: 0.3em;
	padding-left: 0.3em;
	font-size: 0.7em;
	border-radius: 4px;
	text-transform: uppercase;
	font-weight: bold;
	
	&.road {
		background: #4878c3;
		color: #fff
	}
	
	&.cyclo {
		background: #a86b1b;
		color: #fff
	}
	
	&.mtb {
		background: #24a81b;
		color: #fff
	}
	
	&.bmx {
		background: #bf0000;
		color: #fff
	}
}
main.search {
	max-width: 1200px;
	
	#spinner {
		display: none;
		position: fixed;
		background: #000000bf;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		color: #fff;
		padding-top: 20%;
		text-align: center;
		font-size: 3em;
			
		svg {
			animation-name: rotation;
			animation-duration: 4.0s;
			animation-iteration-count: infinite;
			animation-timing-function: linear;
			transform-origin: 50% 50%;
			display: inline-block;
		}
	}
	
	@keyframes rotation {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(360deg);
		}
	}
	
	.results {
		position: relative;
	}
	
	.grid-container {
		@media screen and (min-width: 750px) {
			grid-template-columns: auto;
		}
		
		@media screen and (min-width: 1000px) {
			grid-template-columns: auto auto;
		}
	}
	
	.options {
		margin-bottom: 2em;
		
		@media screen and (min-width: 1000px) {
			margin-bottom: 0em;
			margin-right: 2em;
		}
		
		section {
			margin-top: 1em;
		}
	}
	
	.filters {
		.grid-container {
			@media screen and (min-width: 750px) {
				grid-template-columns: auto auto auto;
			}
			
			div {
				padding: 1em;
			}
			
			input[type="range"] {
				width: 100%;
			}
		}
	}
	
	
	section.map-container {
		margin-top: 1em;
	}
	
	section.map {
		height: 400px;
		
		@media screen and (min-width: 750px) {
			height: 400px;
		}
		
		@media screen and (min-width: 1000px) {
			height: 400px;
		}
	}
	
	
	
	div.inline {
		display: inline-block;
		margin-right: 0.5em;
	}
	
	.actions {
		margin-bottom: 4em;
	}
	
	.text-only-search {
		form {
			input[type="text"] {
				width: 100%;
				display: block;
				margin-bottom: 0.5em;
			}
			
			input[type="submit"] {
				width: 100%;
				display: block;
			}
			
			label {
				text-align: left;
				margin-left: 2px;
			}
			
			.search_length {
				width: 100%;
			}
			
			/*.length_display {
				text-align: center;
			}*/
		}
	}
	
	.routetype_selection {
		label {
			display: inline;
			font-weight: normal;
			text-transform: capitalize;
			margin-right: 1em;
		}
		
		label[for="search_route_types"] {
			font-weight: bold;
			text-transform: none;
		}
	}
	
	#search_results {
		.field {
			margin-bottom: 2em;
		}
	}
	
	.stats {
		margin-bottom: 2em;
	}
}

article.segment {
	margin-top: 2em;
	margin-bottom: 2em;
	border-bottom: solid 1px #ececec;
	padding-bottom: 1em;
	
	.map {
		height: 220px;
		width: 100%;
		margin-bottom: 2em;
	}
}

.segment_icon {
	background: #fff;
	border: 2px solid #838383;
	border-radius: 100%;
	width: 16px;
	height: 16px;
	text-align: center;
	font-weight: bold;
}

.segment_start_icon {
	background: #00ff00;
	border: 2px solid #838383;
	border-radius: 100%;
	text-align: center;
	font-weight: bold;
}

.segment_end_icon {
	background: #ff0000;
	border: 2px solid #838383;
	border-radius: 100%;
	text-align: center;
	font-weight: bold;
}
	
/*@keyframes highlight {
	0% {background-color: transparent;}
	50% {background-color: #e5ffd7;}
	100% {background-color: transparent;}
}*/
main.user {
	max-width: 900px;
	
	a {
		text-decoration: none;
	}
	
	h1 {
		text-align: center;
		margin-bottom: 0;
	}
	
	.back {
		text-align: center;
		margin-bottom: 3em;
	}
	
	section.quick_links {
		.grid-container {
			display: grid;
			grid-template-columns: auto;
			
			@media screen and (min-width: 750px) {
				grid-template-columns: 33.33333% 33.33333% 33.33333%;
			}
			
			@media screen and (min-width: 1000px) {
				grid-template-columns: 33.33333% 33.33333% 33.33333%;
			}
			
			a {
				margin: 0.5em;
			}
		}
	}
	
	div.tabs {
		line-height: 1.5;
		
		@media screen and (min-width: 750px) {
			line-height: 2.25;
		}
	}
}
article.waypoint {
	margin-top: 2em;
	margin-bottom: 2em;
	border-bottom: solid 1px #ececec;
	padding-bottom: 1em;
	
	.map {
		height: 150px;
		width: 100%;
		margin-bottom: 2em;
	}
	
	form {
		margin: 0;
	}
}

main.edit.waypoint {
	#map {
		min-height: 40em;
	}
}

.editor-error {
	position: fixed;
	z-index: 9998;
	background: #515151d9;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	
	article {
		z-index:9999;
		background: #fff;
		top: 20%;
		padding: 2em;
		margin: 0 auto;
	}
}
/*





 *








 */

/*
 * mobile:     @media screen and (min-width: 400px)
 * phablet:    @media screen and (min-width: 550px)
 * tablet:     @media screen and (min-width: 750px)
 * desktop:    @media screen and (min-width: 1000px)
 * desktop_hd: @media screen and (min-width: 1200px)
 * */

main {
	margin-left: auto;
	margin-right: auto;
	
	&.full-width {
		margin: 0;
		max-width: none;
	}
	
	&.wide {
		max-width: 1200px;
	}
	
	&.narrow {
		max-width: 600px;
	}
	
	h1 {
		text-align: center;
		margin-bottom: 0;
	}
}

main.edit {
	margin-left: 0.5em;
	margin-right: 0.5em;
	max-width: 900px;
	
	@media screen and (min-width: 750px) {
		margin-left: auto;
		margin-right: auto;
	}
}

article {
	margin-left: auto;
	margin-right: auto;
	
	&.full-width {
		margin: 0;
		max-width: none;
	}
	
	&.wide {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
	
	&.narrow {
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
}

article.single {
	section {
		margin-left: 0.5em;
		margin-right: 0.5em;
		
		@media screen and (min-width: 750px) {
			margin-left: 0;
			margin-right: 0;
		}
		
		&.map {
			margin: 0;
		}
	}
}

section.content {
	padding: 1em;
	
	@media screen and (min-width: 750px) {
		width: 80%;
		margin: 0 auto;
		padding: 0;
	}
	
	@media screen and (min-width: 1000px) {
		max-width: 1200px;
	}
}
