/* 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(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;
	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(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.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;
		}
	}
html {
  font-size: 10px;
  overflow-x: hidden;
}

@media (min-width: 2135px) {
  html {
    font-size: 11px;
  }
}

@media (min-width: 2320px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 2505px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 2690px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 2875px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 3060px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 3245px) {
  html {
    font-size: 17px;
  }
}

@media (min-width: 3430px) {
  html {
    font-size: 18px;
  }
}

@media (min-width: 3615px) {
  html {
    font-size: 19px;
  }
}

@media (min-width: 3800px) {
  html {
    font-size: 20px;
  }
}

@media (min-width: 3985px) {
  html {
    font-size: 21px;
  }
}

@media (min-width: 4170px) {
  html {
    font-size: 22px;
  }
}

@media (min-width: 4355px) {
  html {
    font-size: 23px;
  }
}

@media (min-width: 4540px) {
  html {
    font-size: 24px;
  }
}

@media (min-width: 4725px) {
  html {
    font-size: 25px;
  }
}

@media (min-width: 4910px) {
  html {
    font-size: 26px;
  }
}

@media (min-width: 5095px) {
  html {
    font-size: 27px;
  }
}

@media (min-width: 5280px) {
  html {
    font-size: 28px;
  }
}

@media (min-width: 5465px) {
  html {
    font-size: 29px;
  }
}

@media (min-width: 5650px) {
  html {
    font-size: 30px;
  }
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Lexend Deca",sans-serif;
  background: #1d1f24;
  overflow-x: hidden;
  margin: 0;
  position: relative;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

a:hover,
a:focus {
  color: #fff;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
}

input,
textarea,
select,
button {
  font: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#wpadminbar>#wp-toolbar a:focus span.ab-icon::before,
#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-icon::before {
  color: #b39371;
}

#wpadminbar>#wp-toolbar a:focus span.ab-label,
#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label {
  color: #b39371;
}

#wpadminbar>#wp-toolbar li:hover span.ab-icon::before,
#wpadminbar>#wp-toolbar li.hover span.ab-icon::before,
#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-icon::before,
#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-icon::before {
  color: #b39371;
}

#wpadminbar>#wp-toolbar li:hover span.ab-label,
#wpadminbar>#wp-toolbar li.hover span.ab-label,
#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label,
#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label {
  color: #b39371;
}

#wpadminbar .ab-top-menu>li:hover>.ab-item,
#wpadminbar .ab-top-menu>li.hover>.ab-item,
#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,
#wpadminbar:not(.mobile) .ab-top-menu>li.hover>.ab-item {
  color: #b39371;
}

#wpadminbar .ab-top-menu>li:hover>.ab-item::before,
#wpadminbar .ab-top-menu>li.hover>.ab-item::before,
#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item::before,
#wpadminbar:not(.mobile) .ab-top-menu>li.hover>.ab-item::before {
  color: #b39371;
}

#wpadminbar .ab-top-menu>li:focus,
#wpadminbar:not(.mobile) .ab-top-menu>li:focus {
  color: #b39371;
}

#wpadminbar .ab-top-menu>li:focus::before,
#wpadminbar:not(.mobile) .ab-top-menu>li:focus::before {
  color: #b39371;
}

#wpadminbar .ab-top-menu>li .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu>li .ab-item:focus {
  color: #b39371;
}

#wpadminbar .ab-top-menu>li .ab-item:focus::before,
#wpadminbar:not(.mobile) .ab-top-menu>li .ab-item:focus::before {
  color: #b39371;
}

#wpadminbar .ab-top-menu>li#wp-admin-bar-wp-logo,
#wpadminbar:not(.mobile) .ab-top-menu>li#wp-admin-bar-wp-logo {
  display: none;
}

#wpadminbar .ab-top-menu>li#wp-admin-bar-site-name .ab-sub-wrapper #wp-admin-bar-appearance #wp-admin-bar-themes,
#wpadminbar .ab-top-menu>li#wp-admin-bar-site-name .ab-sub-wrapper #wp-admin-bar-appearance #wp-admin-bar-widgets,
#wpadminbar:not(.mobile) .ab-top-menu>li#wp-admin-bar-site-name .ab-sub-wrapper #wp-admin-bar-appearance #wp-admin-bar-themes,
#wpadminbar:not(.mobile) .ab-top-menu>li#wp-admin-bar-site-name .ab-sub-wrapper #wp-admin-bar-appearance #wp-admin-bar-widgets {
  display: none;
}

#wpadminbar .ab-top-menu>li#wp-admin-bar-customize,
#wpadminbar:not(.mobile) .ab-top-menu>li#wp-admin-bar-customize {
  display: none;
}

#wpadminbar .quicklinks #wp-admin-bar-comments,
#wpadminbar .quicklinks #wp-admin-bar-gform-forms {
  display: none;
}

#wpadminbar .quicklinks #wp-admin-bar-new-content #wp-admin-bar-new-post,
#wpadminbar .quicklinks #wp-admin-bar-new-content #wp-admin-bar-gravityforms-new-form {
  display: none;
}

#wpadminbar .quicklinks .menupop ul li a:hover,
#wpadminbar .quicklinks .menupop ul li a:focus,
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
#wpadminbar .quicklinks .menupop.hover ul li a:focus {
  color: #b39371;
}

#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus {
  color: #b39371;
}

#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus::before {
  color: #b39371;
}

.container {
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
  width: 100%;
}

.row {
  margin-right: -2rem;
  margin-left: -2rem;
  flex-wrap: wrap;
  display: flex;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: .1rem;
  margin: -0.1rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: .1rem;
  white-space: nowrap;
}

.svg-container {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
  max-height: 100%;
  max-width: 100%;
}

.svg-container svg {
  width: inherit;
  height: inherit;
  display: inline-block;
  color: inherit !important;
}

.svg-container svg [style*="stroke:"]:not(.noColor),
.svg-container svg [style*="stroke: "]:not(.noColor),
.svg-container svg [stroke*="#"]:not(.noColor) {
  stroke: currentColor !important;
  transition: stroke .5s ease;
}

.svg-container svg [style*="fill:"]:not(.noColor),
.svg-container svg [style*="fill: "]:not(.noColor),
.svg-container svg [fill*="#"]:not(.noColor) {
  fill: currentColor !important;
  transition: fill .5s ease;
}

.svg-container svg [fill*=none] {
  fill: rgba(0,0,0,0);
}

.svg-container svg [stroke*=none] {
  stroke: rgba(0,0,0,0);
}

.button {
  outline: none;
  cursor: pointer;
  color: #fff;
  border: none;
  background: none;
  transition: all .2s ease-in-out;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}

.button:hover,
.button:focus {
  text-decoration: none;
}

.button:focus {
  outline: none;
}

.button--primary {
  font-size: 1.5rem;
  font-weight: 300;
  border: .2rem solid;
  text-align: center;
  padding: 1.2rem 2.5rem 1.3rem;
}

.button--gold {
  border-color: #b39371;
  background: #b39371;
}

.button--white--outline {
  color: #fff;
  border-color: #fff;
}

.button--white--outline:hover,
.button--white--outline:focus {
  color: #000;
  background: #fff;
}

.nav--open.admin-bar .page-header__menu {
  padding-top: 5.2rem;
}

.nav--open .page-header__toggler__box {
  transform: translate3d(0, 0.7rem, 0) rotate(45deg);
}

.nav--open .page-header__toggler__box,
.nav--open .page-header__toggler__box::before,
.nav--open .page-header__toggler__box::after {
  width: 3rem;
  background: #fff;
}

.nav--open .page-header__toggler__box::before {
  transform: rotate(-45deg) translate3d(-0.571429rem, -0.8rem, 0);
  opacity: 0;
}

.nav--open .page-header__toggler__box::after {
  top: 1.6rem;
  transform: translate3d(0, -1.6rem, 0) rotate(-90deg);
}

.nav--open .page-header__menu {
  opacity: 1;
  clip-path: circle(100%);
}

.template-home .page-header {
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(0,0,0,0);
  position: absolute;
}

.template-home .page-header__menu .menu-item.current_page_item a {
  color: #b39371;
}

.template-home .page-header__menu .menu-item.current_page_item a::after {
  content: none;
}

.template-home .page-header__menu .menu-item a {
  color: #fff;
}

.template-home .page-header__toggler__box,
.template-home .page-header__toggler__box::before,
.template-home .page-header__toggler__box::after {
  background: #fff;
}

.page-header {
  min-height: 8rem;
  background: #fff;
  padding: 1.5rem 0;
}

@media (min-width: 1025px) {
  .page-header {
    padding: 0;
  }
}

.page-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-header__logo {
  display: inline-block;
}

.page-header__logo img {
  width: 15.5rem;
  height: 5rem;
  display: block;
}

.page-header__toggler {
  z-index: 100;
  outline: none;
  width: 3rem;
  height: 1.8rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  display: block;
  position: relative;
}

@media (min-width: 1025px) {
  .page-header__toggler {
    display: none;
  }
}

.page-header__toggler__box {
  top: 0;
}

.page-header__toggler__box,
.page-header__toggler__box::before,
.page-header__toggler__box::after {
  left: 0;
  width: 100%;
  height: .2rem;
  background: #1d1f24;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  position: absolute;
}

.page-header__toggler__box::before,
.page-header__toggler__box::after {
  content: "";
}

.page-header__toggler__box::before {
  top: .8rem;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform,opacity;
}

.page-header__toggler__box::after {
  top: 1.6rem;
}

.page-header__menu {
  z-index: 98;
  opacity: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  -webkit-clip-path: circle(0 at 0 0);
  clip-path: circle(0 at 0 0);
  background: #000;
  transition: all .45s ease-in-out;
  padding: 2rem 2.5rem 0;
  position: fixed;
}

@media (min-width: 1025px) {
  .page-header__menu {
    opacity: 1;
    top: auto;
    width: auto;
    height: auto;
    clip-path: none;
    background: none;
    padding: 0;
    position: relative;
  }
}

.page-header__menu .menu {
  max-width: 30rem;
  margin-bottom: 2.8rem;
}

@media (min-width: 1025px) {
  .page-header__menu .menu {
    max-width: 100%;
    margin-bottom: 0;
  }
}

.page-header__menu .menu.menu--desktop {
  display: none;
}

@media (min-width: 1025px) {
  .page-header__menu .menu.menu--desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.page-header__menu .menu.menu--mobile {
  display: block;
}

@media (min-width: 1025px) {
  .page-header__menu .menu.menu--mobile {
    display: none;
  }
}

.page-header__menu .menu-item {
  width: 100%;
}

@media (min-width: 1025px) {
  .page-header__menu .menu-item {
    width: auto;
  }
}

.page-header__menu .menu-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

@media (min-width: 1025px) {
  .page-header__menu .menu-item:not(:last-child) {
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

.page-header__menu .menu-item.current_page_item a {
  color: #b39371;
}

.page-header__menu .menu-item.current_page_item a::after {
  content: "";
  right: 0;
  left: 0;
  bottom: 0;
  height: .4rem;
  background: #b39371;
  position: absolute;
}

.page-header__menu .menu-item a {
  color: #fff;
  font-size: 2rem;
  padding: .8rem 0;
  display: block;
  position: relative;
}

@media (min-width: 1025px) {
  .page-header__menu .menu-item a {
    color: #1d1f24;
    font-size: 1.6rem;
    padding: 3rem 0;
  }
}

.page-header__menu .menu-item a:hover,
.page-header__menu .menu-item a:focus {
  color: #b39371;
}

.page-header__menu .social-media {
  display: flex;
  align-items: center;
}

@media (min-width: 1025px) {
  .page-header__menu .social-media {
    display: none;
  }
}

.page-header__menu .social-media__item:not(:last-child) {
  margin-right: 2rem;
}

.page-header__menu .social-media__item__link {
  display: block;
}

.page-header__menu .social-media__item__link:hover .icon,
.page-header__menu .social-media__item__link:focus .icon {
  color: #b39371;
}

.page-header__menu .social-media__item__link .icon {
  color: #fff;
  transition: all .2s ease-in-out;
  display: block;
}

.page-header__menu .social-media__item__link .icon--facebook {
  width: 1rem;
  height: 2.2rem;
}

.page-header__menu .social-media__item__link .icon--instagram {
  width: 2rem;
  height: 2rem;
}

.page-footer {
  background: #000;
  padding: 5rem 0 0;
}

.page-footer__column {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .page-footer__column {
    width: 33.333%;
  }
}

.page-footer__column:not(:last-child) {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-footer__column:not(:last-child) {
    margin-bottom: 0;
  }
}

.page-footer__title {
  max-width: 26rem;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 1025px) {
  .page-footer__title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
}

.page-footer__address {
  color: #adadad;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
}

.page-footer__address span {
  color: #fff;
  font-weight: 400;
}

.page-footer__address a {
  color: #adadad;
}

.page-footer .menu__title {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-footer .menu__item:not(:last-child) {
  margin-bottom: .6rem;
}

.page-footer .menu__item__link {
  color: #adadad;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: normal;
}

.page-footer__copyrights {
  border-top: .1rem solid #1d1f24;
  margin-top: 2rem;
  padding: 2rem 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-footer__copyrights__text {
  font-size: 1.3rem;
  font-weight: 300;
}

.page-footer__copyrights .social-media {
  display: flex;
  align-items: center;
}

.page-footer__copyrights .social-media__item:not(:last-child) {
  margin-right: 1.5rem;
}

.page-footer__copyrights .social-media__item__link {
  display: block;
}

.page-footer__copyrights .social-media__item__link:hover .icon,
.page-footer__copyrights .social-media__item__link:focus .icon {
  color: #b39371;
}

.page-footer__copyrights .social-media__item__link .icon {
  color: #fff;
  transition: all .2s ease-in-out;
  display: block;
}

.page-footer__copyrights .social-media__item__link .icon--facebook {
  width: .8rem;
  height: 1.8rem;
}

.page-footer__copyrights .social-media__item__link .icon--instagram {
  width: 1.6rem;
  height: 1.6rem;
}

body#tinymce {
  margin: 15px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  font-family: "Lexend Deca",sans-serif;
  background: #fff;
  overflow-x: hidden;
  position: relative;
}

body#tinymce p {
  margin-bottom: 20px;
}

body#tinymce ul {
  list-style-type: disc;
}

body#tinymce ol {
  list-style-type: decimal;
}

body#tinymce ul,
body#tinymce ol {
  padding-left: 20px;
}

.home-hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 48rem;
  text-align: center;
  padding: 18rem 0 14rem;
  position: relative;
}

@media (min-width: 1025px) {
  .home-hero {
    min-height: 55rem;
    padding: 20rem 0 16rem;
  }
}

.home-hero::before {
  content: "";
  opacity: .5;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000;
  position: absolute;
}

.home-hero__text {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
}

@media (min-width: 1025px) {
  .home-hero__text {
    font-size: 4.6rem;
  }
}

.home-hero__text span {
  color: #b39371;
}

.home-hero__buttons {
  display: flex;
  justify-content: center;
  position: relative;
}

.home-hero__buttons .button:not(:last-child) {
  margin-right: 2rem;
}

.home-fireplaces-types {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.home-fireplaces-types .fp-block {
  width: 100%;
  z-index: 5;
  padding: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .home-fireplaces-types .fp-block {
    width: 50%;
    padding: 3rem 4.5rem;
  }
}

@media (min-width: 1025px) {
  .home-fireplaces-types .fp-block {
    padding: 4rem 6rem;
  }
}

.home-fireplaces-types .fp-block:hover .fp-block__meta__button .icon,
.home-fireplaces-types .fp-block:focus .fp-block__meta__button .icon {
  transform: translateX(0.5rem);
}

@media (min-width: 768px) {
  .home-fireplaces-types .fp-block:first-child {
    justify-content: flex-end;
  }
}

.home-fireplaces-types .fp-block:first-child:hover,
.home-fireplaces-types .fp-block:first-child:focus {
  background: #16161a;
}

.home-fireplaces-types .fp-block:last-child {
  background: #0f1013;
}

.home-fireplaces-types .fp-block:last-child:hover,
.home-fireplaces-types .fp-block:last-child:focus {
  background: #25282e;
}

.home-fireplaces-types .fp-block:last-child .fp-block__icon img {
  width: 5.3rem;
}

@media (min-width: 768px) {
  .home-fireplaces-types .fp-block:last-child .fp-block__icon img {
    width: 6.5rem;
  }
}

@media (min-width: 1025px) {
  .home-fireplaces-types .fp-block:last-child .fp-block__icon img {
    width: 7.5rem;
  }
}

.home-fireplaces-types .fp-block__wrapper {
  max-width: 33rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .home-fireplaces-types .fp-block__wrapper {
    max-width: 100%;
    justify-content: flex-start;
    margin: 0;
  }
}

.home-fireplaces-types .fp-block__icon {
  width: 5.5rem;
}

@media (min-width: 768px) {
  .home-fireplaces-types .fp-block__icon {
    width: auto;
  }
}

.home-fireplaces-types .fp-block__icon img {
  width: 5.5rem;
  height: 8rem;
  display: block;
}

@media (min-width: 768px) {
  .home-fireplaces-types .fp-block__icon img {
    height: 11rem;
  }
}

@media (min-width: 1025px) {
  .home-fireplaces-types .fp-block__icon img {
    width: 8rem;
  }
}

.home-fireplaces-types .fp-block__meta {
  width: calc(100% - 5.5rem);
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .home-fireplaces-types .fp-block__meta {
    width: auto;
  }
}

.home-fireplaces-types .fp-block__meta__title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

@media (min-width: 380px) {
  .home-fireplaces-types .fp-block__meta__title {
    font-size: 2.6rem;
  }
}

@media (min-width: 768px) {
  .home-fireplaces-types .fp-block__meta__title {
    font-size: 3rem;
  }
}

.home-fireplaces-types .fp-block__meta__button {
  color: #adadad;
  font-size: 1.5rem;
  font-weight: 300;
}

.home-fireplaces-types .fp-block__meta__button .icon {
  top: -0.1rem;
  width: 1.5rem;
  height: .9rem;
  margin-left: .5rem;
  transition: all .2s ease-in-out;
  position: relative;
}

.home-fireplaces-types .fp-block__meta__button .icon svg {
  stroke: #adadad;
}

.image-with-content {
  position: relative;
}

.image-with-content.iwc--2 {
  background: #0f1013;
}

@media (min-width: 768px) {
  .image-with-content .row--reversed {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .image-with-content .row--reversed .image-with-content__img {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .image-with-content .row--reversed .image-with-content__wrapper {
    max-width: 51rem;
    margin-left: auto;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media (min-width: 1025px) {
  .image-with-content .row--reversed .image-with-content__wrapper {
    padding-right: 6rem;
    padding-left: 6rem;
  }
}

.image-with-content .column {
  width: 100%;
}

@media (min-width: 768px) {
  .image-with-content .column {
    width: 50%;
  }
}

.image-with-content__img {
  width: 100%;
  max-width: 100%;
  max-height: 30rem;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .image-with-content__img {
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    max-height: 100%;
    position: absolute;
  }
}

.image-with-content__wrapper {
  padding: 4rem 2rem 4.5rem;
}

@media (min-width: 768px) {
  .image-with-content__wrapper {
    max-width: 55rem;
    padding: 5rem 4.5rem 5.5rem;
  }
}

@media (min-width: 1025px) {
  .image-with-content__wrapper {
    padding: 9rem 6rem 9rem;
  }
}

.image-with-content__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

@media (min-width: 1025px) {
  .image-with-content__title {
    font-size: 3.6rem;
  }
}

.image-with-content__text {
  color: #adadad;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4;
  text-align: justify;
}

@media (min-width: 1025px) {
  .image-with-content__text {
    font-size: 1.7rem;
  }
}

.image-with-content__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.home-description {
  padding: 5.5rem 0;
}

@media (min-width: 1025px) {
  .home-description {
    padding: 8.5rem 0;
  }
}

.home-description__content {
  color: #adadad;
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 85rem;
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .home-description__content {
    font-size: 1.7rem;
  }
}

.home-description__content h1,
.home-description__content h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

@media (min-width: 1025px) {
  .home-description__content h1,
  .home-description__content h2 {
    font-size: 3.6rem;
  }
}

.home-description__content h1:not(:last-child),
.home-description__content h2:not(:last-child) {
  margin-bottom: 2rem;
}

.home-description__content h1,
.home-description__content h2,
.home-description__content h3,
.home-description__content h4,
.home-description__content h5,
.home-description__content h6 {
  color: #fff;
}

.home-description__content p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
}

@media (min-width: 1025px) {
  .home-description__content p {
    font-size: 1.7rem;
  }
}

.home-description__content p:not(:last-child) {
  margin-bottom: 1rem;
}

.home-work {
  background: #000;
  padding: 3.5rem 0 0;
}

.home-work__title {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: .6rem;
}

@media (min-width: 1025px) {
  .home-work__title {
    font-size: 3.6rem;
  }
}

.home-work__text {
  color: #adadad;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 1025px) {
  .home-work__text {
    font-size: 1.7rem;
    margin-bottom: 5rem;
  }
}

.home-work__gallery .column {
  width: 50%;
}

.home-work__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-filters__container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1025px) {
  .products-filters__container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.products-filters__title {
  font-size: 2rem;
  font-weight: 400;
}

.products-filters__button {
  width: 3rem;
  height: 3rem;
}

.products-filters__button.active .hidden-icon {
  display: none;
}

.products-filters__button.active .shown-icon {
  display: block;
}

.products-filters__button .hidden-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  pointer-events: none;
}

.products-filters__button .shown-icon {
  display: none;
  width: 2rem;
  height: 2rem;
  pointer-events: none;
}

.products-filters__wrapper {
  display: none;
  z-index: 99;
  right: 0;
  left: 0;
  background: #07070b;
  padding: 4rem 0 5rem;
  position: absolute;
}

.products-filters__wrapper.active {
  display: block;
}

.products-filters__wrapper .filters-block:not(:last-child) {
  margin-bottom: 2.5rem;
}

.products-filters__wrapper .filters-block__title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.products-filters__wrapper .filters-block__list li:not(:last-child) {
  margin-bottom: .5rem;
}

.products-filters__wrapper .filters-block__list li .filter-button {
  color: #adadad;
  font-size: 1.5rem;
  font-weight: 300;
}

.products-filters__wrapper .filters-block__list li .filter-button::before {
  content: "";
  top: .1rem;
  width: 1.2rem;
  height: 1.2rem;
  border: .1rem solid #adadad;
  margin-right: .8rem;
  display: inline-block;
  position: relative;
}

.products-filters__wrapper .filters-block__list li .filter-button--active::after {
  content: "";
  top: .7rem;
  left: .3rem;
  width: .6rem;
  height: .6rem;
  background: #fff;
  position: absolute;
}

.products-list .row {
  margin: 0;
}

.products-list .column {
  width: 100%;
}

@media (min-width: 421px) {
  .products-list .column {
    width: 50%;
  }
}

.products-list .product-block {
  height: 28rem;
  position: relative;
}

@media (min-width: 576px) {
  .products-list .product-block {
    height: 35rem;
  }
}

@media (min-width: 768px) {
  .products-list .product-block {
    height: 43rem;
  }
}

.products-list .product-block__link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.products-list .product-block__link:hover::before,
.products-list .product-block__link:focus::before {
  background: #b39371;
}

.products-list .product-block__link:hover .product-block__content__button .icon,
.products-list .product-block__link:focus .product-block__content__button .icon {
  transform: translateX(0.5rem);
}

.products-list .product-block__link::before {
  content: "";
  opacity: .4;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000;
  transition: all .2s ease-in-out;
  position: absolute;
}

.products-list .product-block__link::after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(0, 0, 0, 0.05)), color-stop(100%, #000), color-stop(99%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 45%, #000 100%, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.4));
  -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr="#00000000",endColorstr="#a6000000",GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr="#00000000",endColorstr="#a6000000",GradientType=0);
  position: absolute;
}

.products-list .product-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-list .product-block__content {
  z-index: 5;
  right: 2rem;
  left: 2rem;
  bottom: 2.5rem;
  position: absolute;
}

@media (min-width: 768px) {
  .products-list .product-block__content {
    right: 4.5rem;
    left: 4.5rem;
    bottom: 4rem;
  }
}

@media (min-width: 1025px) {
  .products-list .product-block__content {
    right: 5.5rem;
    left: 5.5rem;
    bottom: 5rem;
  }
}

.products-list .product-block__content__title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .products-list .product-block__content__title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .products-list .product-block__content__title {
    margin-bottom: 2rem;
  }
}

.products-list .product-block__content__text {
  color: #adadad;
  font-size: 1.6rem;
  font-weight: 300;
}

.products-list .product-block__content__button {
  color: #adadad;
}

.products-list .product-block__content__button .icon {
  top: -0.1rem;
  width: 1.5rem;
  height: .9rem;
  margin-left: .5rem;
  transition: all .2s ease-in-out;
  position: relative;
}

.products-list .product-block__content__button .icon svg {
  stroke: #fff;
}

.products-list__not-found {
  text-align: center;
  padding: 6rem 0 14rem;
}

@media (min-width: 783px) {
  .admin-bar .product-bar {
    min-height: calc(100vh - 11.2rem);
  }
}

.product-hero {
  min-height: calc(100vh - 8rem);
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.product-hero::before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: .5;
  background: #000;
  position: absolute;
}

.product-hero__title {
  z-index: 5;
  color: #fff;
  font-size: 4.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  position: relative;
}

@media (min-width: 1025px) {
  .product-hero__title {
    font-size: 5.8rem;
  }
}

.product-hero__category {
  z-index: 5;
  color: #fff;
  font-size: 1.6rem;
  background: #b39371;
  padding: .5rem 1.2rem .7rem;
  display: inline-block;
  position: relative;
}

.product-hero__scroll {
  right: 0;
  left: 0;
  bottom: 3.5rem;
  color: #fff;
  display: inline-block;
  position: absolute;
}

.product-hero__scroll .meta {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.product-hero__scroll .icon {
  width: 3.5rem;
  height: 1.4rem;
  margin: 0 auto;
  display: block;
}

.product-content {
  background: #1d1f24;
  padding: 5rem 0 5.5rem;
}

@media (min-width: 1025px) {
  .product-content {
    padding: 5rem 0 8rem;
  }
}

.product-content .row {
  margin-right: -2rem;
  margin-left: -2rem;
}

@media (min-width: 768px) {
  .product-content .row {
    margin-right: -5rem;
    margin-left: -5rem;
  }
}

.product-content .col {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .product-content .col {
    width: 50%;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.product-content__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

@media (min-width: 1025px) {
  .product-content__title {
    font-size: 4rem;
  }
}

.product-content__description {
  color: #adadad;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .product-content__description {
    max-width: 47rem;
    margin-bottom: 0;
  }
}

.product-content__description strong {
  color: #fff;
  font-weight: 400;
}

.product-content__description p:not(:last-child) {
  margin-bottom: 1rem;
}

.product-content__description ul {
  list-style-type: disc;
}

.product-content__description ol {
  list-style-type: decimal;
}

.product-content__description ul,
.product-content__description ol {
  padding-left: 2rem;
}

.product-content__description ul:not(:last-child),
.product-content__description ol:not(:last-child) {
  margin-bottom: 1rem;
}

.product-content__description ul li:not(:last-child),
.product-content__description ol li:not(:last-child) {
  margin-bottom: .6rem;
}

.product-content__label {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.product-content__specification {
  max-width: 44rem;
}

.product-content__specification ul li {
  color: #adadad;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
}

.product-content__specification ul li:not(:last-child) {
  margin-bottom: .6rem;
}

.product-content__specification ul li .value {
  width: 16rem;
  text-align: right;
}

.product-labels {
  padding: 5rem 0 4.5rem;
}

@media (min-width: 1025px) {
  .product-labels {
    padding: 6.5rem 0 6rem;
  }
}

.product-labels__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1025px) {
  .product-labels__title {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
}

.product-labels__blocks .row {
  justify-content: center;
  margin-right: -1rem;
  margin-left: -1rem;
}

.product-labels__blocks .column {
  margin-bottom: 2rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

.product-labels__blocks .energy-block {
  border: .1rem solid #adadad;
  padding: 2.4rem 2rem 2rem;
  transition: all .2s ease-in-out;
  display: block;
}

.product-labels__blocks .energy-block:hover,
.product-labels__blocks .energy-block:focus {
  border-color: #bfd243;
  background: #bfd243;
}

.product-labels__blocks .energy-block:hover .energy-block__class,
.product-labels__blocks .energy-block:focus .energy-block__class {
  background: #fff;
}

.product-labels__blocks .energy-block:hover .energy-block__class::before,
.product-labels__blocks .energy-block:focus .energy-block__class::before {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #fff;
}

.product-labels__blocks .energy-block.energy-block--b:hover,
.product-labels__blocks .energy-block.energy-block--b:focus {
  border-color: #fff200;
  background: #fff200;
}

.product-labels__blocks .energy-block.energy-block--b:hover .energy-block__class,
.product-labels__blocks .energy-block.energy-block--b:focus .energy-block__class {
  background: #fff;
}

.product-labels__blocks .energy-block.energy-block--b:hover .energy-block__class::before,
.product-labels__blocks .energy-block.energy-block--b:focus .energy-block__class::before {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #fff;
}

.product-labels__blocks .energy-block.energy-block--b .energy-block__class {
  background: #fff200;
}

.product-labels__blocks .energy-block.energy-block--b .energy-block__class::before {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #fff200;
}

.product-labels__blocks .energy-block__class {
  height: 3rem;
  color: #1d1f24;
  background: #bfd243;
  margin-bottom: 1.5rem;
  padding: .4rem 2.5rem .6rem 1.5rem;
  transition: all .2s ease-in-out;
  display: inline-block;
  position: relative;
}

.product-labels__blocks .energy-block__class::before {
  content: "";
  top: 0;
  right: -2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 0 1.5rem 2rem;
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #bfd243;
  transition: all .2s ease-in-out;
  position: absolute;
}

.product-labels__blocks .energy-block__text {
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.contact-map .map {
  height: 25rem;
}

@media (min-width: 576px) {
  .contact-map .map {
    height: 30rem;
  }
}

@media (min-width: 1025px) {
  .contact-map .map {
    height: 36rem;
  }
}

.contact-us {
  padding: 5rem 0 6rem;
}

@media (min-width: 1025px) {
  .contact-us {
    padding: 6rem 0 7rem;
  }
}

.contact-us .column {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .contact-us .column {
    width: 50%;
  }
}

.contact-us__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.contact-us__form {
  margin-bottom: 5.5rem;
}

@media (min-width: 768px) {
  .contact-us__form {
    max-width: 48rem;
    margin-bottom: 0;
  }
}

.contact-us__form .wpcf7-form .field input,
.contact-us__form .wpcf7-form .field textarea {
  outline: none;
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  border: none;
  border-bottom: .1rem solid rgba(173,173,173,.5);
  background: none;
  padding: .5rem 0;
  display: block;
}

.contact-us__form .wpcf7-form .field input::placeholder,
.contact-us__form .wpcf7-form .field textarea::placeholder {
  color: #adadad;
  font-size: 1.5rem;
}

.contact-us__form .wpcf7-form .field textarea {
  resize: none;
  height: 10rem;
}

.contact-us__form .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.3rem;
  font-weight: 300;
  margin: .5rem 0 0;
  display: block;
}

.contact-us__form .wpcf7-form .wpcf7-submit {
  outline: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  border: none;
  background: #b39371;
  margin-top: 2rem;
  padding: 1.2rem 2.5rem 1.3rem;
  display: inline-block;
}

.contact-us__form .wpcf7-form .wpcf7-response-output {
  max-width: 35rem;
  font-size: 1.4rem;
  font-weight: 300;
  border: none;
  margin: 2rem 0 0;
  padding: 0;
}

.contact-us__text {
  color: #adadad;
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-us .address-block {
  color: #adadad;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
}

.contact-us .address-block:not(:last-child) {
  margin-bottom: 2rem;
}

.contact-us .address-block__title {
  color: #fff;
  font-weight: 400;
}

.contact-us .address-block address {
  color: #adadad;
  font-style: normal;
  font-weight: 300;
}

.contact-us .address-block address span {
  color: #fff;
  font-weight: 400;
}

.contact-us .address-block address a {
  color: #adadad;
}

.not-found {
  padding: 12rem 0;
}

.not-found__title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.not-found__text {
  font-size: 1.8rem;
  text-align: center;
}


/*# sourceMappingURL=main.css.map*/