.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/wp-content/plugins/mappress-google-maps-for-wordpress/lib/leaflet/images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/wp-content/plugins/mappress-google-maps-for-wordpress/lib/leaflet/images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(/wp-content/plugins/mappress-google-maps-for-wordpress/lib/leaflet/images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-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-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/*
	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/

mappress-map poi {
	display: none;
}

.mapp-layout {
	border: 1px solid lightgray;
	box-sizing: border-box;
	display: block;
	max-width: none;				/* Some themes limit, e.g. 2020 */
	min-width: 200px;
	opacity: 1 !important;			/* Some themes set to 0 */
	padding: 0px !important;		/* Some themes set */
}        

mappress-map.mapp-layout {
	display: flex !important;       /* Some themse override */
	flex-direction: column;
	position: relative;             /* Needed for filters with web component */
}

.mapp-layout * {
	box-sizing: border-box;
	color: black;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 13px;
}

/* WP block editor interferes */
.mapp-layout p {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* GT .aligncenter interferes w/all text */
.mapp-layout.aligncenter {
	text-align: left;
}

.mapp-canvas {
	user-select: none;
}

.mapp-wrapper {
	min-height: 50px;
	position: relative;
}

/* Responsive content */
.mapp-content {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
}

.mapp-main {
	display: flex;
	flex: 1;
	overflow: hidden;
	position: relative;
}

.mapp-content .mapp-main .mapp-canvas img {
	border: none;
	max-width: none;        	/* 2021 interferes with pegman */
	padding: 0;					/* 2011 pads img tags, which interferes with map markers and tiles */
}

.mapp-hidden {
	display: none;
}


/*
	-----------------------------------------------------------------------------------
	Prevent theme conflicts with Google maps.  The !important modifier is used because some
	themes use high-priority (very specific) selectors that interfere.
	-----------------------------------------------------------------------------------
*/

/* Map controls are rendered here, not on the canvas */
.mapp-canvas-panel {
	flex: 1;
	height: 100%;
	margin: 0px;
	overflow: hidden !important;
	padding: 0px !important;
	position: relative;			/* Need for initial dialog position */
}

.mapp-canvas {
	height: 100%;
	word-wrap: normal;			/* 2013 sets break-word, which interferes w/Google copyright in IE only */
}

.mapp-canvas img {
	background: none;
	box-shadow: none !important;		/* 2012 */
	border-radius: 0px !important;		/* 2012 */
	visibility: inherit !important;
}

.leaflet-control-container .leaflet-control-attribution * {
	font-size: 8px !important;
}

/* Prevent theme interference with leaflet */
.leaflet-popup-close-button {
	box-shadow: none !important;			/* 2016, 2017 */
	text-decoration: none !important;		/* 2019 */
}

a.leaflet-control-zoom-in, .leaflet-control-zoom-out {
	text-decoration: none !important;
}

.mapp-spinner-overlay {
	align-items: center;
	background-color: #c0c0c0;
	justify-content: center;
	opacity: 0.5;
	padding: 10px;
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 10001;
}

/* https://icons8.com/preloaders/en/circular# */
.mapp-spinner {
	background: transparent url(/wp-content/plugins/mappress-google-maps-for-wordpress/images/loading.gif) no-repeat center center;
	background-size: 64px;
	display: inline-block;
	height: 64px;
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10002;
	width: 64px;
}

/*
	-----------------------------------------------------------------------------------
	Controls
	Leaflet needs the inner div to get size right, so google was done the same way
	-----------------------------------------------------------------------------------
*/

.mapp-google-control {
	background-color: white;
	box-shadow: rgb(0 0 0 / 30%) 0px 1px 4px -1px;
	position: absolute;
}

.mapp-google-control > div {
	background-position: center;
	background-repeat: no-repeat;
	height: 40px;
	opacity: 0.6;
	width: 40px;
}

.mapp-google-control:hover { background-color: #f4f4f4; }
.mapp-google-control:hover > div { opacity: 1; }

.mapp-leaflet-control {
	border: 2px solid rgba(0,0,0,0.2);
	border-radius: 4px;
	position: absolute;
	z-index: 1000;
}

.mapp-leaflet-control > div {
	background-color: white;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 2px;
	height: 30px;
	line-height: 30px;
	opacity: 1;
	width: 30px;
}

.mapp-leaflet-control:hover > div {
	background-color: #f4f4f4;
	opacity: 1;
}

.mapp-google-fullscreen, .mapp-leaflet-fullscreen {
	top: 10px; right: 10px;
}

.mapp-google-fullscreen > div, .mapp-leaflet-fullscreen > div {
	background-image: url('/wp-content/plugins/mappress-google-maps-for-wordpress/images/fullscreen.svg');
	background-size: 18px 18px;
}

.mapp-google-geolocate, .mapp-leaflet-geolocate {
	bottom: 120px; right: 10px;
}

.mapp-mini .mapp-google-geolocate, .mapp-mini .mapp-leaflet-geolocate {
	bottom: auto;
	top: 60px;
}

.mapp-google-geolocate > div {
	background-image: url('/wp-content/plugins/mappress-google-maps-for-wordpress/images/geolocate.svg');
	background-size: 18px 18px;
}

.mapp-leaflet-geolocate > div {
	background-image: url('/wp-content/plugins/mappress-google-maps-for-wordpress/images/geolocate.svg');
	background-size: 14px 14px;
}

/*
	-----------------------------------------------------------------------------------
	Sidebar
	-----------------------------------------------------------------------------------
*/

.mapp-sidebar {
	background-color: white;
	border-right: 1px solid lightgray;
	display: flex;
	flex-direction: column;
	max-width: 55%;
	position: relative;
	transition-property: all;
	transition-duration: .1s;
	width: 0;
}

.mapp-sidebar.mapp-sidebar-open {
	width: 300px;
}

/* List toggle, left layout only */
.mapp-sidebar-toggle {
	align-items: center;
	background-color: white;
	border: 1px solid lightgray;
	cursor: pointer;
	display: flex;
	height: 40px;
	justify-content: center;
	margin: auto;
	position: absolute;
	top: 0; left: 100%; bottom: 0;
	width: 20px;
	z-index: 1000;
}

.mapp-sidebar-toggle::before {
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid black;
	content: '';
}

.mapp-sidebar-open .mapp-sidebar-toggle::before {
	width: 0;
	height: 0;
	border-left: none;
	border-right: 6px solid black;
}

/* Sidebar inline */
.mapp-sidebar.mapp-sidebar-inline  {
	border: none;
	border-top: 1px solid lightgray;
	display: flex;
	max-height: 350px;
	max-width: none;
	width: auto;
}

.mapp-sidebar-inline .mapp-sidebar-toggle {
	display: none;
}

.mapp-sidebar-inline .mapp-directions {
	max-width: none;
	width: auto;
}

.mapp-sidebar-inline .mapp-list {
	display: flex;
	flex: 1;
	flex-direction: column;
}




/*
	-----------------------------------------------------------------------------------
	POI List (new)
	Structure:
		.mapp-list
			.mapp-list-header
			.mapp-items
				.mapp-item (one for each POI)
			.mapp-list-footer
				.mapp-paginate
	-----------------------------------------------------------------------------------
*/

.mapp-list {
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: hidden;
	position: relative;
}

.mapp-list .mapp-list-header {
	border-bottom: 1px solid lightgray;
	display: flex;
	flex-direction: column;
	padding: 5px;
	position: relative;		/* Needed to scroll list for selection */
}

.mapp-list-count {
	padding: 5px;
	text-align: center;
}

.mapp-list .mapp-items {
	flex: 1;
	overflow: auto;
}

.mapp-list .mapp-item {
	align-items: center;
	border-bottom: 1px solid lightgray;
	display: flex;
	cursor: pointer;
	overflow: hidden;
	padding: 10px;
}

.mapp-list .mapp-item.mapp-selected {
	background-color: #eaeaea;
}

.mapp-list .mapp-item:hover {
	background-color: #eaeaea;
}

.mapp-list .mapp-info {
	flex: 1;
}

.mapp-list .mapp-info .mapp-template {
	align-items: center;
	display: flex;
}

.mapp-list .mapp-title {
	flex: 1;
}

.mapp-list .mapp-item .mapp-icon {
	border: none;                   /* 2011 */
	max-width: 32px !important; 	/* 2012 tries to override */
	max-height: 32px;
	margin: 0 5px;
	padding: 0;                     /* 2011 */
}

.mapp-list-footer {
	border-top: 1px solid lightgray;
	display: flex;
	justify-content: center;
	padding: 10px;
}

.mapp-list .mapp-dir-wrapper {
	margin-top: 10px;
}

/* Make directions look like a link */
.mapp-list .mapp-dir {
	color: #4272db;
	cursor: pointer;
	white-space: nowrap;
}

/*
	-----------------------------------------------------------------------------------
	Pagination
	For: poi list, library picker, and style modal
	-----------------------------------------------------------------------------------
*/

.mapp-paginate {
	align-items: center;
	display: flex;
}

/* Frontend buttons are divs to prevent theme interference w/styling */
.mapp-paginate-button {
	align-items: baseline;
	background-color: #eee;
	border: 1px solid lightgray;
	border-radius: 5px;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	height: 25px;
	justify-content: center;
	margin: 0 2px;
	width: 20px;
}

.mapp-paginate-button.mapp-disabled {
	color: #aaa;
}

.mapp-paginate-count {
	display: inline-block;
	min-width: 60px;
	text-align: center;
}

/*
	-----------------------------------------------------------------------------------
	Header
	- min-height to prevent popins
	-----------------------------------------------------------------------------------
*/
.mapp-header {
	align-items: stretch;
	background-color: white;
	border-bottom: 1px solid lightgray;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: right;     /* Right align filter button where no search box present */
	min-height: 50px;           /* Keep height stable while map initializes */
	padding: 5px;
}

/*
	-----------------------------------------------------------------------------------
	Search
	-----------------------------------------------------------------------------------
*/
.mapp-search-container {
	display: flex;
	flex: 1;
	min-width: 325px;
	position: relative;
}

/*
	-----------------------------------------------------------------------------------
	React autocomplete
	-----------------------------------------------------------------------------------
*/

.mapp-autocomplete {
	align-items: stretch;
	display: flex;
	flex: 1;
}

.mapp-autocomplete-wrapper {
	align-items: center;
	display: flex;
	flex: 1;
	position: relative;
}

.mapp-autocomplete input.mapp-places {
	background-color: white !important;		/* Algolia uses 240,240,240 */
	border: none;
	border: 1px solid #bbb ;
	box-shadow: none ;
	color: black ;
	flex: 1;
	height: 100%;
	line-height: 25px;
	margin: 0 ;
	padding: 5px 10px;
}

.mapp-autocomplete-button {
	background: url('/wp-content/plugins/mappress-google-maps-for-wordpress/images/search_black.png') no-repeat center;
	background-size: contain;
	cursor: pointer;
	position: absolute;
	right: 10px;
	width: 20px;  
	height: 100%;
	background-size: contain;
}		

.mapp-autocomplete-button:hover {
	background: url('/wp-content/plugins/mappress-google-maps-for-wordpress/images/search_blue.png') no-repeat center;
	background-size: contain;
}    


/* Themes like to set img padding/margin */
.mapp-autocomplete .mapp-submit-button img {
	margin: 0 !important;
}
	

.mapp-autocomplete-list {
	background-color: white;
	border: 1px solid lightgray;
	box-shadow: 0px 1px 2px grey;
	cursor: pointer;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	top: 100%;
	width: 100%;
	z-index: 10000;
}

.mapp-autocomplete-item {
	background-color: inherit;
	border-bottom: 1px solid lightgray;
	border-top: none;
	border-right: none;
	border-left: none;
	box-shadow: none;
	color: inherit;
	cursor: inherit;
	font: inherit;
	margin: 0;
	padding: 8px;
}

.mapp-autocomplete-item:hover, .mapp-autocomplete-item.mapp-selected {
	background-color: #eaeaea;
}

.mapp-autocomplete-item {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

/*
	-----------------------------------------------------------------------------------
	Filters
	mapp-dropdown mapp-filter
		mapp-dropdown-toggle
		mapp-dropdown-content
			mapp-filter-wrapper 
				mapp-filter-[name]
			mapp-filter-toolbar
	-----------------------------------------------------------------------------------
*/

.mapp-filter {
	display: flex;
	gap: 5px;
}

.mapp-filter .mapp-button {
	text-transform: uppercase;
}

.mapp-filter-spinner {
	background: transparent url(/wp-content/plugins/mappress-google-maps-for-wordpress/images/spinner-2x.gif) no-repeat center center;
	height: 24px;
	width: 24px;
	margin-left: 10px;
	margin-right: 10px;
}

.mapp-filter-wrapper {
	display: flex;
	flex: 1;
	flex-direction: column;
	overflow: auto;
	padding: 5px 10px;
}

.mapp-filter-button {
	align-items: center;
	display: flex;
	justify-content: center;
}

.mapp-filter-values {
	line-height: normal;
	min-width: 100%;
	padding: 5px;
}

.mapp-filter-values .mapp-control {
	display: block;
}

.mapp-filter-toolbar {
	align-items: center;
	border-top: 1px solid lightgray;
	display: flex;
	justify-content: space-between;
	padding: 10px;
}

.mapp-filter-toolbar .mapp-filter-count {
	color: #777;
	margin-right: 5px;
	min-width: 100px;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mapp-filter-label {
	font-weight: bold;
	padding: 5px 0;
	text-transform: capitalize;
	white-space: nowrap;
}

.mapp-filter-values label {
	align-items: center;
	color: #666;
	display: flex;
	font-weight: normal;		/* 2017 */
	margin: 0;
}

.mapp-filter-values img.mapp-icon {
	display: inline;			/* 2020 sets display to block */
	margin-right: 5px;
}

/* Try to prevent interference from GT editor, theme */
.mapp-filter input, .mapp-filter input[type="text"], .mapp-filter input[type="search"] {
	border: 1px solid #bbb;
	border-radius: 0;
	box-shadow: none;
	line-height: 1;
	max-width: none;
	outline: none;
	padding: 5px 10px;
}

.mapp-filter input[type="radio"], .mapp-filter input[type="checkbox"] {    
	all: revert;
	border-radius: 0;
	box-shadow: none;
	line-height: 1;
	margin: initial;
	margin-right: 10px;
	outline: none;
}

.mapp-filter .mapp-filter-values select {
	border: 1px solid gray;
	border-radius: 0;
	box-shadow: none;
	line-height: 1;
	margin: initial;
	max-width: none;
	outline: none;
	width: 100%;
}

/* Standalone text filter should fill header height or sidebar width */
.mapp-header .mapp-filter-text label, .mapp-header .mapp-filter-text input {
	height: 100%;
}

.mapp-sidebar .mapp-filter-text .mapp-control, .mapp-sidebar .mapp-filter-text label {
	display: flex;
	flex: 1;
}

.mapp-sidebar .mapp-filter-text input {
	flex: 1;
	padding: 10px;
}

/*
	Filters in header/sidebar
*/
.mapp-header .mapp-filters {
	display: flex;
	gap: 5px;
}

.mapp-sidebar .mapp-filter {
	border-bottom: 1px solid lightgray;
	flex-direction: column;
}

.mapp-sidebar .mapp-filter-button {
	border: none;
}

.mapp-sidebar .mapp-filter .mapp-dropdown-content {
	border: none;
	height: 100%;
	right: 0; left: 0;
}

.mapp-sidebar .mapp-filter-text {
	padding: 5px;
}

/*
	------------------------------------------------------------------------------------------------------------
	Infobox

	- This applies only to Infoboxes!  Google standard infoWindow / Leaflet popup use class .mapp-iw instead

	.mapp-ib-wrapper						- positioning element
		.mapp-ib-content					- box + tip
			.mapp-ib 						- box only, with border
				.mapp-iw 					- infowindow (popup content)
			.mapp-ib-tip						- triangle tip
	-----------------------------------------------------------------------------------------------------------
*/

/* Positioning element: width prevents clipping, height must be zero or it'll obscure canvas */
.mapp-ib-wrapper {
	bottom: 0;
	display: flex;
	left: 0;
	max-height: 60%;	/* Based on map size */
	max-width: 90%;		/* Based on map size */
	overflow: hidden;
	position: absolute;
}

.mapp-ib-content {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	line-height: 0;		/* Prevent font from distorting tip */
	overflow: hidden;
	z-index: 1005;		/* Needed for Leaflet, above menu icon, below menu */
}

/* In fullscreen Google sets map z-index very high */
:fullscreen ~ .mapp-ib-wrapper { z-index: 10000000000; }
:-webkit-full-screen ~ .mapp-ib-wrapper { z-index: 10000000000; }
:-moz-full-screen ~ .mapp-ib-wrapper { z-index: 10000000000; }
:-ms-fullscreen ~ .mapp-ib-wrapper { z-index: 10000000000; }

.mapp-ib {
	background-color: white;
	border: 1px solid lightgray;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	line-height: normal;
	outline: none;
	overflow: hidden;
	box-shadow: 0 0px 7px 0px rgba(0,0,0,0.20);
}


.mapp-ib-tip {
	display: flex;
	flex: 0 0 auto;
	left: 50%;
	position: relative;
	top: -1px;
	width: 0;
}

.mapp-ib-tip:before {
	border: 10px solid transparent;
	border-top: 10px solid white;
	border-bottom: none;
	content: "";
	left: -10px;
	position: relative;
	width: 0;
}

/*
	-----------------------------------------------------------------------------------
	Popup contents
	-----------------------------------------------------------------------------------
*/

.mapp-iw {
	display: flex;
	flex-direction: column;
	min-width: 200px;
	overflow: hidden;
}

/* Selectivity needed to override GT editor */
.mapp-ib .mapp-iw * {
	font-size: 13px;
}

/* Override common theme / user agent styles that interfere */
.mapp-content .mapp-iw * {
	line-height: normal;
}

.mapp-iw p {
	margin: 0 !important;
	padding: 0;
}

/* Try to constrain oembeds to container */
.mapp-iw iframe {
	max-height: 100%;
	max-width: 100%;
}

/* Override theme link styles */
.mapp-iw a, .mapp-iw a:link, .mapp-iw a:active, .mapp-iw a:visited, .mapp-iw a:hover {
	border: none !important;
	box-shadow: none !important;			/* 2016, 2017 */
	color: #4272db !important;
	margin: 0;
	padding: 0;
	text-decoration: none !important;
}

.mapp-iw .mapp-info {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 100px;			/* Used when IB is very small and thumbnail is on top */
	overflow: hidden;
	padding: 10px;
}

.mapp-iw .mapp-info .mapp-template {
	display: flex;
	flex: 1;
	flex-direction: column;
	overflow: hidden;
}

.mapp-iw .mapp-title {
	font-weight: bold;
	padding-bottom: 10px;
}

.mapp-iw .mapp-body {
	flex: 1;
	overflow: auto;
	overflow-wrap: break-word;
}

.mapp-iw .mapp-dir-wrapper {
	margin-top: 10px;
}

/* Make directions look like a link */
.mapp-iw .mapp-dir {
	color: #4272db;
	cursor: pointer;
	padding-top: 10px;
	white-space: nowrap;
}

/* Workarounds for IE, which doesn't like flex */
.mapp-ie .mapp-iw {
	display: block;
	overflow: auto;
}

.mapp-ie .mapp-iw .mapp-body {
	flex: none;
}

/* Data table */
.mapp-iw .mapp-table {
	margin-top: 10px;
}

.mapp-iw .mapp-label {
	font-weight: 500;
}

.mapp-iw .mapp-cell {
	padding: 2px 10px;
}

/*
	-----------------------------------------------------------------------------------
	Thumbnail gallery
	-----------------------------------------------------------------------------------
*/
.mapp-iw .mapp-thumbnail {
	cursor: pointer;
}

.mapp-thumbnail {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

/* Display block removes extra whitespace @ bottom */
.mapp-thumbnail img {
	display: inline-block;
	max-width: none;
	object-fit: cover;
}

.mapp-thumbnail .mapp-gallery-previous, .mapp-thumbnail .mapp-gallery-next {
	align-items: end;
	background-color: white;
	border: 1px solid gray;
	border-radius: 40px;
	color: black;
	cursor: pointer;
	display: flex;
	font-size: 20px;
	height: 24px;
	justify-content: center;
	opacity: 0.5;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.mapp-thumbnail .mapp-gallery-previous:hover, .mapp-thumbnail .mapp-gallery-next:hover {
	opacity: 1.0;
}

.mapp-thumbnail .mapp-gallery-previous { left: 5px; }
.mapp-thumbnail .mapp-gallery-next { right: 5px; }
.mapp-thumbnail .mapp-gallery-previous:after { content: "<"; }
.mapp-thumbnail .mapp-gallery-next:after { content: ">"; }

/*
	-----------------------------------------------------------------------------------
	Popup Thumbnail styles
	-----------------------------------------------------------------------------------
*/

.mapp-iw.mapp-thumb-top .mapp-thumbnail {
	text-align: center;
}

/* When thumbnails are on top AND an image is present, limit info section width to width of the image */
.mapp-iw.mapp-thumb-top.mapp-has-thumb .mapp-info {
	min-width: 100%;
	width: 0;
}

.mapp-iw.mapp-thumb-left .mapp-thumbnail, .mapp-iw.mapp-thumb-right .mapp-thumbnail {
	align-items: center;
}

/* Limit info section to height of featured image.  */
.mapp-iw.mapp-thumb-left .mapp-info, .mapp-iw.mapp-thumb-right .mapp-info  {
	min-width: 150px;
}

.mapp-iw.mapp-thumb-left {
	flex-direction: row;
}

.mapp-iw.mapp-thumb-right {
	flex-direction: row-reverse;
}

/*
	-----------------------------------------------------------------------------------
	List thumbnail styles.  Thumbnail is prepended before item content.
	-----------------------------------------------------------------------------------
*/

/* Fill the .mapp-thumbnail container, where fixed dimensions are applied */
.mapp-list .mapp-thumbnail img, .mapp-list .mapp-thumbnail .mapp-embed, .mapp-list .mapp-thumbnail iframe {
	height: 100%;
	width: 100%;
}

/* Default is flex horizontal, use block to position image at top */
.mapp-list.mapp-thumb-top .mapp-item {
	display: block;
	padding: 10px;
}

.mapp-list.mapp-thumb-top .mapp-thumbnail {
	height: 150px;
	margin-bottom: 10px;
	text-align: center;
}

.mapp-list.mapp-thumb-left .mapp-thumbnail {
	height: 100px !important;
	width: 100px !important;
	margin-right: 10px;
}

.mapp-list.mapp-thumb-left .mapp-item {
	align-items: start;
}

.mapp-list.mapp-thumb-left .mapp-info .mapp-template {
	flex-direction: row-reverse;
}

.mapp-list.mapp-thumb-right .mapp-item {
	align-items: start;
	flex-direction: row-reverse;
}

.mapp-list.mapp-thumb-right .mapp-thumbnail {
	height: 100px !important;
	width: 100px !important;
	margin-left: 10px;
}



/*
	-----------------------------------------------------------------------------------
	IB Animations
	-----------------------------------------------------------------------------------
*/

@keyframes floatdown {
	from { margin-top: 0 }
	to { margin-top: 5px }
}

@keyframes floatup {
	from { margin-top: 0 }
	to { margin-top: -5px }
}

.mapp-ib-wrapper.mapp-ib-float {
	animation: floatup 0.4s forwards;
}

/*
	-----------------------------------------------------------------------------------
	Mini view
	-----------------------------------------------------------------------------------
*/

/* In mini view place the list under the map so it can scroll UP */
.mapp-mini .mapp-main {
	flex-direction: column-reverse;
}

.mapp-mini .mapp-sidebar {
	bottom: 0;
	height: 0;
	left: 0;
	max-width: none;
	position: absolute;
	right: 0;
	transition-property : all;
	transition-duration: .3s;
	width: auto;
	z-index: 10000;
}

.mapp-mini .mapp-sidebar.mapp-sidebar-open  {
	height: 100%;
}

.mapp-button.mapp-view-list, .mapp-button.mapp-view-map {
	align-items: center;
	border: none;
	justify-content: center;
	text-transform: uppercase;    
}

.mapp-view-list img, .mapp-view-map img {
	height: 16px !important;	/* GT editor interferes */
	margin-right: 5px;
}

.mapp-mini .mapp-directions {
	max-width: none;
	width: auto;
}

.mapp-footer {
	background-color: #f5f5f5;
	border-top: 1px solid lightgray;
}

.mapp-mini .mapp-filters .mapp-dropdown-content { 
	width: 100%;
	height: 100%;
}

/*
	-----------------------------------------------------------------------------------
	Markers
	-----------------------------------------------------------------------------------
*/

.mapp-marker {
	cursor: pointer;
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
	position: absolute;
	touch-action: none;		/* For dragdrop */
}

/* Label */
.mapp-marker img:nth-child(2) {
	height: 50%;
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
}

/* Image transforms base */
.mapp-marker img {
	transform-origin: 50% 100%;
	transition: transform .2s;
	width: 100%;
}

/* Scale image */
.mapp-marker-scale img {
	transform-origin: 50% 100%;
	transform: scale(1.2);
	perspective: 1001px;
}

/* Scale label - combine transforms */
.mapp-marker-scale img:nth-child(2) {
	transform: translate(-50%, -50%) scale(1.5);
}

.mapp-marker-circle {
	overflow: visible !important;
}

.mapp-marker-circle::before {
	background-color: rgba(255,255,255,0.7);
	border: 3px solid white;
	border-radius: 50%;
	box-sizing: border-box;
	content: "";
	left: -25%;
	top: -25%;
	width: 150%;
	height: 150%;
	position: absolute;
	z-index: -1;
}

/*
	-----------------------------------------------------------------------------------
	Directions
	-----------------------------------------------------------------------------------
*/

.mapp-directions {
	padding: 20px 10px 10px 10px;
}

.mapp-directions input {
	border: 1px solid gray;     /* 2020 */
	padding: 3px;
}

.mapp-dir-content {
	align-items: center;
	display: flex;
}

.mapp-dir-toolbar {
	margin-top: 10px;
}

.mapp-dir-from-to {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
}

.mapp-dir-from, .mapp-dir-top {
	line-height: normal ;
	width: 100%;
}

.mapp-dir-arrows {
	background: transparent url('/wp-content/plugins/mappress-google-maps-for-wordpress/images/swapvert.svg') no-repeat center center;
	cursor: pointer;
	height: 30px;
	margin-left: 5px;
	opacity: 0.6;
	width: 30px;
}

.mapp-dir-arrows:hover {
	background-color: rgba(0,0,0,0.05);
	border-radius: 30px;
	opacity: 1;
}

/*
	-----------------------------------------------------------------------------------
	Custom controls
	-----------------------------------------------------------------------------------
*/

/* Extra selectivity because iframe defaults contents to color black */
.mapp-main .mapp-menu-toggle {
	background: white url('/wp-content/plugins/mappress-google-maps-for-wordpress/images/menu-2x.png') no-repeat center center;
	background-size: 24px 24px;
	box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px;
	color: #777;
	cursor: pointer;
	height: 40px;
	outline: none;
	outline: none;		/* Prevent focus outline */
	position: absolute;
	top: 10px; left: 10px; bottom: 0; right: 0;
	width: 40px;
	z-index: 1000;
}

.mapp-menu {
	background-color: white;
	border: 1px solid lightgray;
	color: #606060;
	cursor: default;
	display: flex;
	flex-direction: column;
	overflow: auto;
	padding: 5px 0 5px 0;
	position: absolute;
	top: 50px; left: 10px;
	width: 150px;
	z-index: 1010;
}

.mapp-menu-items {
	flex: 1;
}

.mapp-menu-item {
	cursor: pointer;
	line-height: 20px;
	padding: 5px 10px 5px 10px;
}

.mapp-menu-item:hover {
	background-color: #eaeaea;
	color: black;
}
.mapp-menu-item.mapp-active {
	background-color: #eaeaea;
	color: black;
	font-weight: bold;
}

.mapp-menu-separator {
	padding: 0;
	border-bottom: 1px solid lightgray;
}

.mapp-menu-footer{
	padding: 5px 10px;
	text-align: right;
}

.mapp-menu-help:hover {
	opacity: 1;
}


/*
	-----------------------------------------------------------------------------------
	Dialog / modal
	-----------------------------------------------------------------------------------
*/
.mapp-dialog {
	max-width: 90vw;
	max-height: 90vh;
	overflow: hidden;
	padding: 0;
}

/* Used to prevent scrolling on underlying body */
.mapp-dialog-noscroll {
	overflow: hidden;
}    

/* Must wait until open, otherwise flash of content */
.mapp-dialog[open] {
	display: flex;
	flex-direction: column;
}

.mapp-dialog::backdrop {
	background-color: black;
	opacity: 0.6;
}

@media screen and (max-width: 650px) {
	.mapp-dialog {
		height: 100vh;
		max-height: none;
		max-width: none;
		width: 100vw;
	}
}

.mapp-dialog-title {
	font-size: 20px;
	padding: 15px;
}

.mapp-dialog-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: hidden;
	padding: 0 15px;
}

.mapp-dialog-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 15px;
	border-top: 1px solid lightgray;
}

.mapp-dialog-toolbar > div {
	display: flex;
	gap: 5px;
}

.mapp-dialog-nopad .mapp-dialog-title, .mapp-dialog-nopad .mapp-dialog-content, .mapp-dialog-nopad .mapp-dialog-toolbar {
	padding: 0;
}

.mapp-dialog-close {
	color: black;
	cursor: pointer;
	display: inline-block;
	font-family: sans-serif;
	font-size: 36px;
	line-height: 36px;
	position: absolute;
	text-align: center;
	top: 10px; right: 10px;
	z-index: 1;
}

.mapp-dialog-close:hover {
	color: rgb(0,124,186);
}

/*
	-----------------------------------------------------------------------------------
	Mashup modal:
	-----------------------------------------------------------------------------------
*/

.mapp-dialog.mapp-modal {
	max-height: 80vh;
	max-width: 80vw;
	min-width: 400px;
}

.mapp-dialog.mapp-modal .mapp-dialog-content {
	padding-left: 0;
}

.mapp-modal-title {
	margin-bottom: 15px;
}

.mapp-modal-title h1 {
	margin: 0;
	padding: 0 0 15px 0;
}

.mapp-modal-template {
	display: flex;
	flex: 1;
	flex-direction: row;
}

/* Featured image displays on the left by default */
.mapp-modal-featured {
	max-width: 40%;
}

.mapp-modal-featured img {
	height: 100% !important;
	object-fit: cover;
	width: 100% !important;
	max-width: none !important;
}

.mapp-modal-article {
	display: flex;
	flex: 1;
	flex-direction: column;
	overflow: auto;
	padding: 20px;
}

.mapp-modal-meta {
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	margin-top: 50px;
}

.mapp-modal-spinner-wrapper {
  transform: translate(-200%, -200%);
  width: 5px;
  height: 5px;
}

/* https://www.w3schools.com/howto/howto_css_loader.asp */
.mapp-modal-spinner {
	background: transparent url(/wp-content/plugins/mappress-google-maps-for-wordpress/images/spinner-2x.gif) no-repeat center center;
	height: 40px;
	width: 40px;
	margin-left: 10px;
	margin-right: 10px;
	position: absolute;
	top: 50%; left: 50%;
}

/*
	-----------------------------------------------------------------------------------
	Iframe maps
	-----------------------------------------------------------------------------------
*/

/* Newer component iframe doesn't need position absolute because wrapper uses aspect-ratio instead of padding-bottom */
.mapp-component-iframe {
	background-color: rgba(221,221,221,1);    /* #ddd */
	border: none;
	max-height: none !important;        /* 2021 restricts */
	overflow: hidden;
	z-index: 1;
}

/* Non-component iframe.  Size only works with position absolute AND h/w=100%; z-index because 2020 page breaks appear over map */
.mapp-iframe {
	background-color: rgba(221,221,221,1);	/* #ddd */
	border: none;
	height: 100%;
	max-height: none !important;		/* 2021 restricts */
	overflow: hidden;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	width: 100%;
	z-index: 1;
}

.mapp-iframe-html, .mapp-iframe-body { 
	box-sizing: border-box;
	color: black;
	font-family: sans-serif;
	font-size: 13px;
	height: 100%;
	margin: 0;
	padding: 0;
}

.mapp-iframe-body .mapp-wrapper { 
	height: 100% !important;
	padding-bottom: 0 !important;
}

/*
	-----------------------------------------------------------------------------------
	Errors overlay
	-----------------------------------------------------------------------------------
*/
.mapp-errors-overlay {
	background-color: black;
	opacity: 0.7;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	z-index: 1100;	/* Just over mapp-ib */
}

.mapp-errors {
	background-color: white;
	border: 2px solid gray;
	color: black !important;
	overflow: auto;
	padding: 10px;
	position: absolute;
	top: 10%; left: 10%; bottom: 10%; right: 10%;
	z-index: 1101;
}

.mapp-errors * {
	font-size: 14px !important;
}
.mapp-errors-header {
	font-size: 18px !important;
	font-weight: bold !important;
	margin-bottom: 15px;
	text-align: center;
}

.mapp-errors-section {
	margin: 5px 0;
}

.mapp-errors-title {
	display: inline-block;
	border-bottom: 2px solid red;
	font-weight: 600 !important;
	margin: 10px 0;
}

.mapp-errors-toolbar {
	text-align: center;
}

.mapp-errors-apikey {
	background-color: #007CBA;
	border: 1px solid gray;
	color: white;
	cursor: pointer;
	display: inline-block;
	margin-top: 20px;
	padding: 10px;
}

.mapp-errors-apikey:hover {
	background-color: #006ba1;
}

.mapp-errors-apikey:active {
	box-shadow: inset 0 0 0 1px #fff, 0 0 0;
}

/*
	-----------------------------------------------------------------------------------
	Compliance
	-----------------------------------------------------------------------------------
*/

.mapp-layout > .cmplz-placeholder-element {
	height: auto !important;
}

.mapp-layout.mapp-has-iframe { position: relative; }

.mapp-layout.mapp-has-iframe iframe,
.mapp-layout.mapp-has-iframe div.cmplz-blocked-content-container,
.mapp-layout.mapp-has-iframe [data-placeholder_class_index] {
	border: none;
	height: 100%;
	max-height: none !important;		/* 2021 restricts */
	overflow: hidden;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	width: 100%;
	z-index: 1;
}

/*
	-----------------------------------------------------------------------------------
	Tables
	-----------------------------------------------------------------------------------
*/

.mapp-table {
	border-collapse: collapse;
	display: table;
	table-layout: fixed;
}

.mapp-table .mapp-row { display: table-row; }
.mapp-table .mapp-cell { display: table-cell; }
.mapp-table .mapp-label { display: table-cell; }

/*
	-----------------------------------------------------------------------------------
	Generic controls
	-----------------------------------------------------------------------------------
*/

div.mapp-control {
	display: inline-block;
}

.mapp-control > label {
	align-items:center;
	display: inline-flex;
}

.mapp-label-left {
	margin-right: 5px;
}

.mapp-label-right {
	margin-left: 5px;
}

.mapp-label-top {
	margin-bottom: 3px;
}

/* Nested components (checkboxes & radios) */
.mapp-control-checkbox label, .mapp-control-radio label {
	margin-right: 20px;
}

/* Try to remove some WP styling */
.mapp-control input[type="radio"], .mapp-control input[type="checkbox"] {
	margin: 0;
}

.mapp-help-text {
	font-style: italic;
	padding: 5px 0;
}

.mapp-help-link {
	display: inline-block;
	text-decoration: none;
	vertical-align: baseline;
}

.mapp-help-warning {
	border: 1px solid lightgray;
	border-left: 4px solid #dba617;
	margin-top: 10px;
	padding: 10px;
}

.mapp-help-error {
	border: 1px solid lightgray;
	border-left: 4px solid #d63638;
	margin-top: 10px;
	padding: 10px;
}


/*
	-----------------------------------------------------------------------------------
	Misc
	-----------------------------------------------------------------------------------
*/

.mapp-align-left { float: left; }
.mapp-align-right { float: right; }
.mapp-align-center { margin-left: auto; margin-right: auto; }
.mapp-align-default {}

.mapp-close {
	color: gray;
	cursor: pointer;
	display: inline-block;
	font-family: sans-serif;
	font-size: 18px;
	font-weight: bold;
	height: 20px;
	line-height: 20px;
	position: absolute;
	text-align: center;
	top: 0px; right: 0px;
	width: 20px;
	z-index: 1;
}

.mapp-close:after {
	content: "x";
}

.mapp-close:hover {
	color: black;
}

img.mapp-icon, .mapp-icon img {
	box-shadow: none !important;	/* 2012 applies box shadow to all images */
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
	height: 32px;
	width: 32px;
	vertical-align: middle;
}


*[data-mapp-action] {
	cursor: pointer;
}

.mapp-max {
	width: 100%;
}

.mapp-caret:after {
	content: "";
	display: inline-block;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid black;
	border-bottom: none;
	margin-left: 5px;
	vertical-align: middle;
}

/* Pseudo-buttons, to avoid theme styles */
.mapp-button, .mapp-link-button, .mapp-submit-button {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	line-height: normal;
	padding: 10px;
	white-space: nowrap;
}

.mapp-link-button {
	color: #4285F4;
}

.mapp-button {
	background-color: white;
	border: 1px solid lightgray;
	user-select: none;    
}

.mapp-button:hover {
	background-color: #eee;
}

.mapp-submit-button {
	background-color: #4d90fe;
	border: 1px solid lightgray;
	color: white;
}

.mapp-submit-button:hover {
	background-color: #357ae8;
}

.mapp-button-disabled  {
	color: #aaa;
	pointer-events: none;
}

.mapp-button-busy:after {
	background: transparent url(/wp-content/plugins/mappress-google-maps-for-wordpress/images/spinner-2x.gif) no-repeat center center;
	background-size: 20px 20px;
	content: '';
	height: 20px;
	margin-left: 10px;
	opacity: 0.5;
	width: 20px;
}

.mapp-button-caret:after {
	content: '';
	display: inline-block;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid black;
	border-bottom: none;
	margin-left: 10px;
}

.mapp-button-disabled.mapp-button-caret:after {
	border-top: 5px solid #aaa;
}

.mapp-dropdown-content {
	background-color: white;
	border: 1px solid lightgray;
	display: flex;
	flex-direction: column;   
	margin-top: 6px;
	overflow: hidden;
	position: absolute;
	top: 100%;
	z-index: 10000;
}@font-face {
  font-family: 'fontello';
  src: url('/wp-content/plugins/pixelwars-core/themes/global/css/fonts/fontello/font/fontello.eot?24047119');
  src: url('/wp-content/plugins/pixelwars-core/themes/global/css/fonts/fontello/font/fontello.eot?24047119#iefix') format('embedded-opentype'),
       url('/wp-content/plugins/pixelwars-core/themes/global/css/fonts/fontello/font/fontello.woff2?24047119') format('woff2'),
       url('/wp-content/plugins/pixelwars-core/themes/global/css/fonts/fontello/font/fontello.woff?24047119') format('woff'),
       url('/wp-content/plugins/pixelwars-core/themes/global/css/fonts/fontello/font/fontello.ttf?24047119') format('truetype'),
       url('/wp-content/plugins/pixelwars-core/themes/global/css/fonts/fontello/font/fontello.svg?24047119#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('/wp-content/plugins/pixelwars-core/themes/global/css/fonts/fontello/font/fontello.svg?24047119#fontello') format('svg');
  }
}
*/
 
 [class^="pw-icon-"]:before, [class*=" pw-icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.pw-icon-menu:before { content: '\e800'; } /* '' */
.pw-icon-share:before { content: '\e801'; } /* '' */
.pw-icon-search:before { content: '\e802'; } /* '' */
.pw-icon-calendar:before { content: '\e803'; } /* '' */
.pw-icon-clock:before { content: '\e804'; } /* '' */
.pw-icon-medium:before { content: '\e805'; } /* '' */
.pw-icon-comment:before { content: '\e806'; } /* '' */
.pw-icon-user:before { content: '\e807'; } /* '' */
.pw-icon-pocket:before { content: '\e808'; } /* '' */
.pw-icon-doc-text:before { content: '\e809'; } /* '' */
.pw-icon-down-outline:before { content: '\e80a'; } /* '' */
.pw-icon-down-open-big:before { content: '\e80b'; } /* '' */
.pw-icon-angle-down:before { content: '\e80c'; } /* '' */
.pw-icon-circle-empty:before { content: '\e80d'; } /* '' */
.pw-icon-dot-circled:before { content: '\e80e'; } /* '' */
.pw-icon-check:before { content: '\e80f'; } /* '' */
.pw-icon-check-empty:before { content: '\e810'; } /* '' */
.pw-icon-export:before { content: '\e811'; } /* '' */
.pw-icon-pencil-alt:before { content: '\e812'; } /* '' */
.pw-icon-chat:before { content: '\e813'; } /* '' */
.pw-icon-mic:before { content: '\e814'; } /* '' */
.pw-icon-video-alt:before { content: '\e815'; } /* '' */
.pw-icon-videocam-outline:before { content: '\e816'; } /* '' */
.pw-icon-pinterest:before { content: '\e817'; } /* '' */
.pw-icon-gmail:before { content: '\e818'; } /* '' */
.pw-icon-quote-left:before { content: '\e819'; } /* '' */
.pw-icon-quote-right:before { content: '\e81a'; } /* '' */
.pw-icon-link:before { content: '\e81b'; } /* '' */
.pw-icon-location:before { content: '\e81c'; } /* '' */
.pw-icon-pin:before { content: '\e81d'; } /* '' */
.pw-icon-attach:before { content: '\e81e'; } /* '' */
.pw-icon-play:before { content: '\e81f'; } /* '' */
.pw-icon-eye:before { content: '\e820'; } /* '' */
.pw-icon-heart:before { content: '\e821'; } /* '' */
.pw-icon-heart-filled:before { content: '\e822'; } /* '' */
.pw-icon-plus:before { content: '\e823'; } /* '' */
.pw-icon-download-cloud:before { content: '\e824'; } /* '' */
.pw-icon-facebook:before { content: '\e825'; } /* '' */
.pw-icon-twitter:before { content: '\e826'; } /* '' */
.pw-icon-linkedin-squared:before { content: '\e827'; } /* '' */
.pw-icon-gplus:before { content: '\e828'; } /* '' */
.pw-icon-pinterest-circled:before { content: '\e829'; } /* '' */
.pw-icon-github-circled:before { content: '\e82a'; } /* '' */
.pw-icon-behance:before { content: '\e82b'; } /* '' */
.pw-icon-dribbble:before { content: '\e82c'; } /* '' */
.pw-icon-instagram:before { content: '\e82d'; } /* '' */
.pw-icon-lastfm:before { content: '\e82e'; } /* '' */
.pw-icon-rss:before { content: '\e82f'; } /* '' */
.pw-icon-vimeo-squared:before { content: '\e830'; } /* '' */
.pw-icon-forrst:before { content: '\e831'; } /* '' */
.pw-icon-skype:before { content: '\e832'; } /* '' */
.pw-icon-picasa:before { content: '\e833'; } /* '' */
.pw-icon-youtube-play:before { content: '\e834'; } /* '' */
.pw-icon-flickr:before { content: '\e835'; } /* '' */
.pw-icon-tumblr:before { content: '\e836'; } /* '' */
.pw-icon-blogger:before { content: '\e837'; } /* '' */
.pw-icon-delicious:before { content: '\e838'; } /* '' */
.pw-icon-digg:before { content: '\e839'; } /* '' */
.pw-icon-friendfeed:before { content: '\e83a'; } /* '' */
.pw-icon-wordpress:before { content: '\e83b'; } /* '' */
.pw-icon-stackoverflow:before { content: '\e83c'; } /* '' */
.pw-icon-foursquare:before { content: '\e83d'; } /* '' */
.pw-icon-xing:before { content: '\e83e'; } /* '' */
.pw-icon-sina-weibo:before { content: '\e83f'; } /* '' */
.pw-icon-soundcloud:before { content: '\e840'; } /* '' */
.pw-icon-fivehundredpx:before { content: '\e841'; } /* '' */
.pw-icon-slideshare:before { content: '\e842'; } /* '' */
.pw-icon-android:before { content: '\e843'; } /* '' */
.pw-icon-apple:before { content: '\e844'; } /* '' */
.pw-icon-windows:before { content: '\e845'; } /* '' */
.pw-icon-vkontakte:before { content: '\e846'; } /* '' */
.pw-icon-myspace:before { content: '\e847'; } /* '' */
.pw-icon-meetup:before { content: '\e848'; } /* '' */
.pw-icon-cart:before { content: '\e849'; } /* '' */
.pw-icon-reddit:before { content: '\e84a'; } /* '' */
.pw-icon-stumbleupon-circled:before { content: '\e84b'; } /* '' */
.pw-icon-path:before { content: '\e84c'; } /* '' */
.pw-icon-dropbox:before { content: '\e84d'; } /* '' */
.pw-icon-paper-plane:before { content: '\e84e'; } /* '' */
.pw-icon-paper-plane-1:before { content: '\e84f'; } /* '' */
.pw-icon-goodreads:before { content: '\e850'; } /* '' */
.pw-icon-grooveshark:before { content: '\e851'; } /* '' */
.pw-icon-comment-1:before { content: '\e852'; } /* '' */
.pw-icon-steam:before { content: '\e853'; } /* '' */
.pw-icon-angellist:before { content: '\e855'; } /* '' */
.pw-icon-icq:before { content: '\e856'; } /* '' */
.pw-icon-edit:before { content: '\e857'; } /* '' */
.pw-icon-home:before { content: '\e858'; } /* '' */
.pw-icon-doc-alt:before { content: '\e859'; } /* '' */
.pw-icon-attach-1:before { content: '\e85a'; } /* '' */
.pw-icon-thumbs-up:before { content: '\e85b'; } /* '' */
.pw-icon-info-circled-alt:before { content: '\e85c'; } /* '' */
.pw-icon-warning-empty:before { content: '\e85d'; } /* '' */
.pw-icon-plus-squared-alt:before { content: '\e85e'; } /* '' */
.pw-icon-minus-squared-alt:before { content: '\e85f'; } /* '' */
.pw-icon-left-small:before { content: '\e860'; } /* '' */
.pw-icon-bookmark-empty:before { content: '\e861'; } /* '' */
.pw-icon-bookmark-empty-1:before { content: '\e862'; } /* '' */
.pw-icon-vine:before { content: '\e863'; } /* '' */
.pw-icon-reply-outline:before { content: '\e864'; } /* '' */
.pw-icon-network:before { content: '\e865'; } /* '' */
.pw-icon-tag-empty:before { content: '\e866'; } /* '' */
.pw-icon-tag:before { content: '\e867'; } /* '' */
.pw-icon-mail:before { content: '\e868'; } /* '' */
.pw-icon-mic-outline:before { content: '\e869'; } /* '' */
.pw-icon-camera-outline:before { content: '\e86a'; } /* '' */
.pw-icon-tiktok:before { content: '\e86b'; } /* '' */
.pw-icon-feather:before { content: '\e86c'; } /* '' */
.pw-icon-left-open-big:before { content: '\e86d'; } /* '' */
.pw-icon-right-open-big:before { content: '\e86e'; } /* '' */
.pw-icon-up-open-big:before { content: '\e86f'; } /* '' */
.pw-icon-picture-1:before { content: '\e870'; } /* '' */
.pw-icon-videocam:before { content: '\e871'; } /* '' */
.pw-icon-link-ext:before { content: '\e872'; } /* '' */
.pw-icon-level-up:before { content: '\e873'; } /* '' */
.pw-icon-back-in-time:before { content: '\e874'; } /* '' */
.pw-icon-stopwatch:before { content: '\e875'; } /* '' */
.pw-icon-star-empty:before { content: '\e876'; } /* '' */
.pw-icon-star:before { content: '\e877'; } /* '' */
.pw-icon-down-circled:before { content: '\e878'; } /* '' */
.pw-icon-file-pdf:before { content: '\e879'; } /* '' */
.pw-icon-cw:before { content: '\e87a'; } /* '' */
.pw-icon-ccw:before { content: '\e87b'; } /* '' */
.pw-icon-briefcase:before { content: '\e87c'; } /* '' */
.pw-icon-graduation-cap:before { content: '\e87d'; } /* '' */
.pw-icon-activity:before { content: '\e87e'; } /* '' */
.pw-icon-heart-empty:before { content: '\e87f'; } /* '' */
.pw-icon-heart-1:before { content: '\e880'; } /* '' */
.pw-icon-keyboard:before { content: '\e881'; } /* '' */
.pw-icon-phone:before { content: '\e882'; } /* '' */
.pw-icon-lightbulb:before { content: '\e883'; } /* '' */
.pw-icon-vcard:before { content: '\e884'; } /* '' */
.pw-icon-music-outline:before { content: '\e885'; } /* '' */
.pw-icon-cancel-circled-outline:before { content: '\e886'; } /* '' */
.pw-icon-info-outline:before { content: '\e887'; } /* '' */
.pw-icon-location-outline:before { content: '\e888'; } /* '' */
.pw-icon-globe-alt-outline:before { content: '\e889'; } /* '' */
.pw-icon-brush:before { content: '\e88a'; } /* '' */
.pw-icon-coffee:before { content: '\e88b'; } /* '' */
.pw-icon-book-open:before { content: '\e88c'; } /* '' */
.pw-icon-video-1:before { content: '\e88d'; } /* '' */
.pw-icon-key:before { content: '\e88e'; } /* '' */
.pw-icon-graduation-cap-1:before { content: '\e88f'; } /* '' */
.pw-icon-camera:before { content: '\e890'; } /* '' */
.pw-icon-unsplash:before { content: '\e891'; } /* '' */
.pw-icon-beaker:before { content: '\e892'; } /* '' */
.pw-icon-beaker-1:before { content: '\e893'; } /* '' */
.pw-icon-smile:before { content: '\e894'; } /* '' */
.pw-icon-frown:before { content: '\e895'; } /* '' */
.pw-icon-music:before { content: '\e896'; } /* '' */
.pw-icon-photo:before { content: '\e897'; } /* '' */
.pw-icon-cancel:before { content: '\e898'; } /* '' */
.pw-icon-cancel-outline:before { content: '\e899'; } /* '' */
.pw-icon-camera-2:before { content: '\e89a'; } /* '' */
.pw-icon-picture-2:before { content: '\e89b'; } /* '' */
.pw-icon-file-image:before { content: '\e89c'; } /* '' */
.pw-icon-music-1:before { content: '\e89d'; } /* '' */
.pw-icon-minus:before { content: '\e89e'; } /* '' */
.pw-icon-plus-1:before { content: '\e89f'; } /* '' */
.pw-icon-minus-1:before { content: '\e8a0'; } /* '' */
.pw-icon-download-alt:before { content: '\e8a1'; } /* '' */
.pw-icon-camera-alt:before { content: '\e8a4'; } /* '' */
.pw-icon-moon:before { content: '\e8a6'; } /* '' */
.pw-icon-home-outline:before { content: '\e8a7'; } /* '' */
.pw-icon-phone-outline:before { content: '\e8a8'; } /* '' */
.pw-icon-sun:before { content: '\e8a9'; } /* '' */
.pw-icon-plane-outline:before { content: '\e8aa'; } /* '' */
.pw-icon-tree:before { content: '\e8ab'; } /* '' */
.pw-icon-location-inv:before { content: '\e8ac'; } /* '' */
.pw-icon-smiley:before { content: '\e8ad'; } /* '' */
.pw-icon-person:before { content: '\e8ae'; } /* '' */
.pw-icon-adult:before { content: '\e8af'; } /* '' */
.pw-icon-child:before { content: '\e8b0'; } /* '' */
.pw-icon-location-1:before { content: '\e8b1'; } /* '' */
.pw-icon-heart-2:before { content: '\e8b2'; } /* '' */
.pw-icon-cup:before { content: '\e8b4'; } /* '' */
.pw-icon-doc:before { content: '\e8b5'; } /* '' */
.pw-icon-cd:before { content: '\e8b6'; } /* '' */
.pw-icon-food:before { content: '\e8b7'; } /* '' */
.pw-icon-paypal:before { content: '\e8b9'; } /* '' */
.pw-icon-spotify-1:before { content: '\e8ba'; } /* '' */
.pw-icon-left-outline:before { content: '\e8bb'; } /* '' */
.pw-icon-left:before { content: '\e8bc'; } /* '' */
.pw-icon-right:before { content: '\e8bd'; } /* '' */
.pw-icon-right-small:before { content: '\e8be'; } /* '' */
.pw-icon-right-outline:before { content: '\e8bf'; } /* '' */
.pw-icon-shopping-bag:before { content: '\e8c0'; } /* '' */
.pw-icon-cancel-line:before { content: '\e8c1'; } /* '' */
.pw-icon-calendar-line:before { content: '\e8c2'; } /* '' */
.pw-icon-check-line:before { content: '\e8c3'; } /* '' */
.pw-icon-lock:before { content: '\e8c5'; } /* '' */
.pw-icon-lock-1:before { content: '\e8c6'; } /* '' */
.pw-icon-bloglovin-alt:before { content: '\e8c7'; } /* '' */
.pw-icon-bloglovin:before { content: '\e8c8'; } /* '' */
.pw-icon-whatsapp:before { content: '\e8c9'; } /* '' */
.pw-icon-image-alt:before { content: '\e8ca'; } /* '' */
.pw-icon-deviantart:before { content: '\f1bd'; } /* '' */
.pw-icon-twitch:before { content: '\f1e8'; } /* '' */
.pw-icon-yelp:before { content: '\f1e9'; } /* '' */
.pw-icon-snapchat:before { content: '\f2ac'; } /* '' */
.pw-icon-quora:before { content: '\f2c4'; } /* '' */
/*
 	THeBlogger SHORTCODES STYLES 
*/

/* EMPTY PARAGRAPH FIX */
.row p:empty,
.vc_row p:empty {
	display: none;
	}


/* TABS */
.tabs {
 	margin-bottom: 2em;
	}
	.tabs .tab-titles {
 		padding: 0; margin: 0 0 0px 0; font-size:  11px; letter-spacing: 1px; text-transform: uppercase;
		}
		.tabs .tab-titles li {
 			display: inline-block; margin-bottom: 0px;
			}
			.tabs .tab-titles li a {
 				display: inline-block; padding: 6px 12px; color: inherit; font-weight: bold; border: 0; cursor: pointer; background: #fff;
				}
			.tabs .tab-titles li a.active {
                background: rgba(33, 41, 51, 0.07);    
				}
		.tabs .tab-content > div {
 			padding: 1.2em 0; display: none;
			}
		.tabs .tab-content a.fluidbox,
		.toggle-content a.fluidbox {
			display: block; margin: 16px 0;
			}
			
/* TOGGLES */
.toggle-group {
	margin-bottom: 2em;
	}
	.toggle h4 {
        position: relative; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; border-left: 0; padding: 12px 0 12px 24px; margin: 0; cursor: pointer; 
		}
	.toggle h4.active {
 		 border-bottom: 0;
		}
	.toggle h4:before {
 		content: "\e823"; opacity: .6; position: absolute; top: 1em; left: 0; font-size: 14px; line-height: 1;
		}
	.toggle h4.active:before {
 		content: '\e89e'; color: #333;
		}
	.toggle .toggle-content {
        display: none; padding: 4px 0 14px 22px;
		}
	.toggle-content p:last-child {
		margin-bottom: 0;
		}
		
/* ALERTS */
.alert {
    position: relative; padding: 1em 2.2em; line-height: 1.4; margin-bottom: 2em; border: 2px solid #ddd;
	}
.alert.success {
    border-color: #8EE1A8;
	}
.alert.error {
 	border-color: #FF6140;
	}
	
/* CONTACT FORM */
.contact-form {
 	margin: 1.6em auto 2em auto; max-width: 600px; overflow: auto;
	}
	.contact-form p {
		margin: 1.2em 0;
		}	
	.contact-form p:last-child {
		text-align: center;
		}	
	.contact-form input:not([type=submit]):not([type=button]):not([type=file]):not([type=radio]):not([type=checkbox]),
	.contact-form textarea {
		width: 100%; max-width: none; display: block; 
		}
	.contact-form textarea {
		height: 100px;
		}
	.contact-form .antispam { 
		display: none; 
		}
    .submit {
        position: relative; overflow: hidden; 
        }
    .submit .submit-label {
        position: relative; display: inline-block;
        }
    .submit.active .submit-label {
		opacity: 0;
        }
    .submit .submit-status {
        position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 100%; opacity: 0;
        }
    .submit.loading .submit-status {
        background: url(/wp-content/plugins/pixelwars-core/themes/global/images/bckg/loading.gif) center center no-repeat; background-size: 77px 7px;
        }
    .submit.active .submit-status {
        opacity: 1;
        }
    .submit .submit-status:before { 
        font-family: "fontello"; line-height: 40px; 
        }
    .submit.success { 
        color: #096; border-color: #096;
        }
    .submit.error { 
        color: #FF6140; border-color: #FF6140;
        }
    .submit.success .submit-status:before { 
        content: '\e85b'; 
        }
    .submit.error .submit-status:before { 
        content: '\e85d'; 
        }	

/* SOCIAL LINKS */
html a.social-link {
	display: inline-block; position: relative; padding: 0; margin: 0 .25em .5em 0; text-align: center; font-size: 16px; font-weight: 400; font-family: "fontello"; width: 40px; line-height: 40px; color: inherit; background: #fff;  border-radius: 50%;
	}
html a.social-link:hover {
	color: #fff; background: #2a2a2a; border-color: transparent;
	}
html a.social-link:active {
	top: 1px; left: 1px;
	}
	.social-link.facebook:before {
		content: '\e825'
		}
	.social-link.twitter:before {
		content: '\e826'
		}
	.social-link.flickr:before {
		content: '\e835'
		}
	.social-link.rss:before {
		content: '\e82f'
		}
	.social-link.dribbble:before {
		content: '\e82c'
		}
	.social-link.lastfm:before {
		content: '\e82e'
		}
	.social-link.linkedin:before {
		content: '\e827'
		}
	.social-link.vimeo:before {
		content: '\e830'
		}
	.social-link.forrst:before {
		content: '\e831'
		}
	.social-link.skype:before {
		content: '\e832'
		}
	.social-link.picasa:before {
		content: '\e833'
		}
	.social-link.tumblr:before {
		content: '\e836'
		}
	.social-link.behance:before {
		content: '\e82b'
		}
	.social-link.blogger:before {
		content: '\e837'
		}
	.social-link.delicious:before {
		content: '\e838'
		}
	.social-link.digg:before {
		content: '\e839'
		}
	.social-link.friendfeed:before {
		content: '\e83a'
		}
	.social-link.github:before {
		content: '\e82a'
		}
	.social-link.wordpress:before {
		content: '\e83b'
		}
	.social-link.google-plus:before {
		content: '\e828'
		}
	.social-link.youtube:before {
		content: "\e834"
		}
	.social-link.pinterest:before {
		content: "\e817"
		}
	.social-link.instagram:before {
		content: "\e82d"
		}
	.social-link.stack-overflow:before {
		content: "\e83c"
		}
	.social-link.foursquare:before {
		content: "\e83d"
		}
	.social-link.xing:before {
		content: "\e83e"
		}
	.social-link.weibo:before {
		content: "\e83f"
		}
	.social-link.soundcloud:before {
		content: "\e840"
		}
	.social-link.fivehundredpx:before {
		content: "\e841"
		}
	.social-link.slideshare:before {
		content: "\e842"
		}
	.social-link.vine:before {
		content: "\e863"
		}
	.social-link.vkontakte:before {
		content: "\e846"
		}
	.social-link.paypal:before {
		content: "\e8b9"
		}
	.social-link.spotify:before {
		content: "\e8ba"
		}
	.social-link.bloglovin:before {
		content: "\e8c7"
		}
	.social-link.whatsapp:before {
		content: "\e8c9"
		}
	.social-link.reddit:before {
		content: "\e84a"
		}
	.social-link.medium:before {
		content: "\e805"
		}
	.social-link.snapchat:before {
		content: "\f2ac"
		}
	.social-link.tiktok:before {
		content: "\e86b"
		}
	.social-link.unsplash:before {
		content: "\e891"
		}
	.social-link.deviantart:before {
		content: "\f1bd"
		}
	.social-link.quora:before {
		content: "\f2c4"
		}
	.social-link.meetup:before {
		content: "\e848"
		}
	.social-link.goodreads:before {
		content: "\e850"
		}
	.social-link.twitch:before {
		content: "\f1e8"
		}
	.social-link.yelp:before {
		content: "\f1e9"
		}

/* TIMELINE */
.timeline {
 	position: relative; padding: 1em 0 3em;
	}
.timeline + p {
	margin-bottom: 2.6em;
	}
.event {
	position: relative; padding: 0 1em 2em 2.4em;
	}
    .event:before { 
        content : ""; position: absolute; top: 10px; bottom: -10px; left: 12px; width: 3px; background: #f1f1f1;
        }
    .event:after { 
        content : ""; position: absolute; top: 2px; left: 7px; width: 12px; height: 12px; border: 3px solid #ddd; outline : 4px solid #fff; border-radius: 50%; background: #fff;
        }
	.event.current:after {
        border-color: #222;
		}
    .event h2 {
 		margin-left: 1em; margin-bottom: .4em; font-size: 1.3em; 
		}
    .event [class^="pw-icon-"], 
	.event [class*=" pw-icon-"], 
	.event .vc_icon_element {
        display: block; text-align: center; position: absolute; top: -8px; left: -5px; margin: 0;  z-index: 20; outline : 4px solid #fff;
        }
	.event .vc_icon_element {
		font-size: 11px;
        }
	html .event .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon {
		font-size: 15px !important;
		}
    .event [class*="pw-icon-"] {
        font-size: 15px; width: 38px; line-height: 38px; color: #fff; background: #222; border-radius: 50%;
        }
    .event [class*="pw-icon-"]:before {
        margin: 0; 
        }	
	.event h6 {
        display: block; color: rgba(171, 171, 171, 0.26); font-size: 19px; font-weight: 700; margin-bottom: 1.2em; line-height: 1; text-transform: uppercase;
		}
	.timeline .event:last-child {
		padding-bottom: 0;
		}
    .timeline .event:last-child:before {
        bottom: 4px;
		}
	.event h4 {
		font-size: 16px; margin: 0 0 .2em 0; padding: 0;
		}
	.event h5 {
        margin: 0; padding: 0 0 .3em 0; font-size: 11px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; opacity: .25;
		}
	.event p {
		margin: .6em 0 .2em 0;
		}
    .event p:last-child {
		margin-bottom: 0;
		}

/* SKILLS */
.skill-unit + h3,
.skill-unit + h4,
.skill-unit + .wpb_text_column,
.skill-unit + .wpb_content_element {
	margin: 4em 0 1.6em;
	}
.skill-unit {
	margin-top: 1.4em;
	}
	.skill-unit h4 {
		opacity: .8; margin: 0 0 4px 0; font-weight: 400; font-size: 14px; position: relative; z-index: 10; padding-left: 0px;
		}
	.skill-unit .bar {
		position: relative; width: 100%; height: 6px;
		}
		.skill-unit .bar .progress {
            position: absolute; top: 0; left: 0; width: 0; height: 100%; background: #eee; -webkit-transition: width 1s ease-out; transition: width 1s ease-out;
			}
            .skill-unit .bar .progress span {
                position: absolute; top: -14px; right: 0; font-size: 11px; line-height: 26px; color: #fff; border: 3px solid #fff; padding: 0 7px; background : #222; border-radius: 50%;
			   }

/* TESTIMONIAL */
.testo {
    position: relative; padding: 1.4em 1.8em; margin: 4em 0 1em; border: 1px solid #eee; border-radius: 4px; box-shadow: inset 0 1px 0 #FFF,1px 1px 0 #FFF,2px 2px 0 #FFF,3px 3px 0 #eee;
	}
	.testo img {
 		display: block; margin: -60px auto 10px auto; max-height: 80px; border-radius: 50%; border: 6px solid #fff;
		}
	.testo h4 {
		position: relative; text-align: center; margin: 0; font-size: 15px;
		}
		.testo h4 span {
            display: block; font-size: 12px; font-weight: 400; color: #ccc;
			}
	.testo p {
		position: relative; margin: .6em 0 0.2em 0; font-size: 13px; text-align: center;
		}

/* SERVICE */
.service {
    margin: 1em 0;
	}
.service:last-child:after {
    display: none;
	}
	.service i,
	.service img,
	.service > p:first-child { 
		display: inline-block; width: 52px; line-height: 50px; margin-bottom: 0; font-size: 38px; text-align: left; color: #333; float: left;
		}
	.service i:before { 
		margin: 0 .2em; display: inline-block; 
		}
	.service p:not(:first-child) {
	 	margin-top: .2em; margin-left: 74px; font-size: 13px; opacity: .45;
		}
	.service h4 {
	 	margin-top: 0; margin-bottom: 0.4em; margin-left: 74px;
		}
		
/* FUN FACT */
.fun-fact { 
	margin-bottom: 2em; margin-top: 1em; text-align: center;
	}
	.fun-fact i,
	.fun-fact img { 
		display: block; margin-left: auto; margin-right: auto; width: 100%; margin-bottom: .6em; max-width: 52px; font-size: 38px; line-height: 1;
		}
	.fun-fact p {
		margin-bottom: 0;
		}
	.fun-fact h4 { 
		margin: 0; font-size: 13px; line-height: 1.2; font-weight: 700; opacity: .3; letter-spacing: 2px; text-transform: uppercase;
		}
.service p:empty,
.fun-fact p:empty {
	display: none;
	}
		
/* CLIENT */
.client {
	display: flex; align-items: center; justify-content: center; height: 90px; margin-bottom: 1.6em; border: 1px solid #f1f1f1;
	}
	.client a,
	.client p {
		display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; -webkit-transition: all 0.15s ease-out; transition: all 0.15s ease-out;
		}
	.client a:hover {
		opacity: .3;
		}
	.client img { 
		max-width: 50%; max-height: 50%;
		}
	.client p {
		margin-bottom: 0;
		}
	.client p:empty {
		display: none;
		}

/* GRID FIX */
@media (min-width: 1200px) {
	.col-xs-6:not(.col-lg-3):nth-child(2n+1) {
		clear: left;
		}
}
	

/* TABLETS */
@media screen and (min-width: 768px) {
	    
    /* CONTACT FORM */
	.contact-form p {
		width: 50%; float: left;
		}
	.contact-form p:nth-of-type(1) {
		padding-right: 16px;
		}
	.contact-form p:nth-of-type(2) {
		padding-left: 16px;
		}
	.contact-form p:nth-of-type(2) label.error {
		left: 26px;
		}
	.contact-form p:nth-of-type(n+3){
		 width: 100%;
		}
		

	/* TIMELINE */
    .event {
        padding: 0 1em 3em 4.6em;
        }
    .event h2 {
 		margin-left: 0;
		}
    .event h6 {
		margin-left: -1.2em;
		}
    .event [class^="pw-icon-"], 
	.event [class*=" pw-icon-"],
	.event .vc_icon_element {
        top: -17px; left: -14px;
        }
	.event .vc_icon_element {
		font-size: 16px
        }
    .event [class^="pw-icon-"], 
	.event [class*=" pw-icon-"] {
        font-size: 18px; width: 56px; line-height: 56px;
        }
		
		
	html .event .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon {
		font-size: 18px !important;
		}
		
	/* CLIENT */
	.client {
		height: 120px;
		}
			
}
/*
 	THeBlogger SHORTCODES STYLES 
*/

/* BUTTONS */
input[type=submit],
input[type=button],
button,
a.button {
 	display: inline-block; position: relative; padding: 14px 26px; margin-bottom: .25em; font-size: 11px; letter-spacing:  1px; text-transform: uppercase; line-height: 1.2; outline: 0; border: 2px solid #333; color: #333; text-shadow: none; background: none; border-radius: 0;
	}
input[type=submit]:hover,
input[type=button]:hover,
button:hover,
a.button:hover {
 	color: #fff; background-color: #333; border-color: transparent;
	}
input[type=submit]:active,
input[type=button]:active,
button:active,
a.button:active {
	-webkit-transform: scale(0.95); -ms-transform: scale(0.95); transform: scale(0.95);
	}
/* Large Buttons */
input[type=submit].big,
input[type=button].big,
button.big,
a.button.big {
 	font-size: 13px; padding: 1.6em 2.8em;
	}
/* Small Buttons */
input[type=submit].small,
input[type=button].small,
button.small,
a.button.small {
 	padding: .6em 1.4em; font-size: 11px;
	}
/* Buttons with icons */
input[type=submit] i,
input[type=button] i,
button i,
a.button i {
 	display: inline; line-height: 1; font-size: 16px; font-weight: bold; margin-right: .4em; margin-left: -0.35em; margin-bottom: -1em; vertical-align: middle;
	}
input[type=submit].big i,
input[type=button].big i,
button.big i,
a.button.big i {
 	top: .7em; left: 1.2em; font-size: 18px;
	}
.button + .button {
    margin-left: 1.4em;
	}

/* TABS */
.tabs {
 	margin-bottom: 2em;
	}
	.tabs .tab-titles {
 		padding: 0; margin: 0 0 0px 0; font-size:  11px; letter-spacing: 1px; text-transform: uppercase;
		}
		.tabs .tab-titles li {
 			display: inline-block; margin-bottom: 0px;
			}
			.tabs .tab-titles li a {
 				display: inline-block; padding: 6px 12px; color: inherit; font-weight: bold; border: 0; cursor: pointer; background: #fff;
				}
			.tabs .tab-titles li a.active {
                background: rgba(33, 41, 51, 0.07);    
				}
		.tabs .tab-content > div {
 			padding: 1.2em 0; display: none;
			}
		.tabs .tab-content a.fluidbox,
		.toggle-content a.fluidbox {
			display: block; margin: 16px 0;
			}
			
/* TOGGLES */
.toggle-group {
	margin-bottom: 2em;
	}
	.toggle h4 {
        position: relative; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; border-left: 0; padding: 12px 0 12px 24px; margin: 0; cursor: pointer; 
		}
	.toggle h4.active {
 		 border-bottom: 0;
		}
	.toggle h4:before {
 		content: "\e823"; opacity: .6; position: absolute; top: 1em; left: 0; font-size: 14px; line-height: 1;
		}
	.toggle h4.active:before {
 		content: '\e89e'; color: #333;
		}
	.toggle .toggle-content {
        display: none; padding: 4px 0 14px 22px;
		}
	.toggle-content p:last-child {
		margin-bottom: 0;
		}
		
/* ALERTS */
.alert {
    position: relative; padding: 1em 2.2em; line-height: 1.4; margin-bottom: 2em; border: 2px solid #ddd;
	}
.alert.success {
    border-color: #8EE1A8;
	}
.alert.error {
 	border-color: #FF6140;
	}
	
/* CONTACT FORM */
.contact-form {
 	margin: 1.6em auto 2em auto; max-width: 600px; overflow: auto;
	}
	.contact-form p {
		margin: 1.2em 0;
		}	
	.contact-form p:last-child {
		text-align: center;
		}	
	.contact-form input:not([type=submit]):not([type=button]):not([type=file]):not([type=radio]):not([type=checkbox]),
	.contact-form textarea {
		width: 100%; max-width: none; display: block; 
		}
	.contact-form textarea {
		height: 100px;
		}
	.contact-form .antispam { 
		display: none; 
		}
    .submit {
        position: relative; overflow: hidden; 
        }
    .submit .submit-label {
        position: relative; display: inline-block;
        }
    .submit.active .submit-label {
		opacity: 0;
        }
    .submit .submit-status {
        position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 100%; opacity: 0;
        }
    .submit.loading .submit-status {
        background: url(/wp-content/plugins/theblogger-shortcodes/images/bckg/loading.gif) center center no-repeat; background-size: 77px 7px;
        }
    .submit.active .submit-status {
        opacity: 1;
        }
    .submit .submit-status:before { 
        font-family: "fontello"; line-height: 40px; 
        }
    .submit.success { 
        color: #096; border-color: #096;
        }
    .submit.error { 
        color: #FF6140; border-color: #FF6140;
        }
    .submit.success .submit-status:before { 
        content: '\e85b'; 
        }
    .submit.error .submit-status:before { 
        content: '\e85d'; 
        }	

/* SOCIAL LINKS */
html a.social-link {
	display: inline-block; padding: 0; margin: 0 .25em .5em 0; text-align: center; font-size: 14px; font-family: "fontello"; width: 40px; line-height: 40px; color: #555; background: #fff;  border-radius: 50%;
		}
html a.social-link:hover {
	color: #fff; background: #444; border-color: transparent;
	}
	.social-link.facebook:before {
		content: '\e825'
		}
	.social-link.twitter:before {
		content: '\e826'
		}
	.social-link.flickr:before {
		content: '\e835'
		}
	.social-link.rss:before {
		content: '\e82f'
		}
	.social-link.dribbble:before {
		content: '\e82c'
		}
	.social-link.lastfm:before {
		content: '\e82e'
		}
	.social-link.linkedin:before {
		content: '\e827'
		}
	.social-link.vimeo:before {
		content: '\e830'
		}
	.social-link.forrst:before {
		content: '\e831'
		}
	.social-link.skype:before {
		content: '\e832'
		}
	.social-link.picasa:before {
		content: '\e833'
		}
	.social-link.tumblr:before {
		content: '\e836'
		}
	.social-link.behance:before {
		content: '\e82b'
		}
	.social-link.blogger:before {
		content: '\e837'
		}
	.social-link.delicious:before {
		content: '\e838'
		}
	.social-link.digg:before {
		content: '\e839'
		}
	.social-link.friendfeed:before {
		content: '\e83a'
		}
	.social-link.github:before {
		content: '\e82a'
		}
	.social-link.wordpress:before {
		content: '\e83b'
		}
	.social-link.google-plus:before {
		content: '\e828'
		}
	.social-link.youtube:before {
		content: "\e834"
		}
	.social-link.pinterest:before {
		content: "\e829"
		}
	.social-link.instagram:before {
		content: "\e82d"
		}
	.social-link.stack-overflow:before {
		content: "\e83c"
		}
	.social-link.foursquare:before {
		content: "\e83d"
		}
	.social-link.xing:before {
		content: "\e83e"
		}
	.social-link.weibo:before {
		content: "\e83f"
		}
	.social-link.soundcloud:before {
		content: "\e840"
		}
	.social-link.fivehundredpx:before {
		content: "\e841"
		}
	.social-link.slideshare:before {
		content: "\e842"
		}
	.social-link.vine:before {
		content: "\e863"
		}
	.social-link.vkontakte:before {
		content: "\e846"
		}
	.social-link.paypal:before {
		content: "\e8b9"
		}
	.social-link.spotify:before {
		content: "\e8ba"
		}
	.social-link.bloglovin:before {
		content: "\e8c7"
		}


/* TIMELINE */
.timeline {
 	position: relative; padding: 1em 0 3em;
	}
.timeline + p {
	margin-bottom: 2.6em;
	}
.event {
	position: relative; padding: 0 1em 2em 2.4em;
	}
    .event:before { 
        content : ""; position: absolute; top: 10px; bottom: -10px; left: 12px; width: 3px; background: #f1f1f1;
        }
    .event:after { 
        content : ""; position: absolute; top: 2px; left: 7px; width: 12px; height: 12px; border: 3px solid #ddd; outline : 4px solid #fff; border-radius: 50%; background: #fff;
        }
	.event.current:after {
        border-color: #222;
		}
    .event h2 {
 		margin-left: .6em; margin-bottom: .4em; font-size: 1.3em; 
		}
    .event [class*="pw-icon-"] {
        display: block; text-align: center; font-size: 15px; position: absolute; top: -8px; left: -5px; width: 38px; line-height: 38px; margin: 0;  z-index: 20; color: #fff; background: #222; border-radius: 50%; outline : 4px solid #fff;
        }
    .event [class*="pw-icon-"]:before {
        margin: 0; 
        }	
	.event h6 {
        display: block; color: rgba(171, 171, 171, 0.26); font-size: 19px; font-weight: 700; margin-bottom: 1.2em; line-height: 1; text-transform: uppercase;
		}
	.timeline .event:last-child {
		padding-bottom: 0;
		}
    .timeline .event:last-child:before {
        bottom: 4px;
		}
	.event h4 {
		font-size: 16px; margin: 0 0 .2em 0; padding: 0;
		}
	.event h5 {
        margin: 0; padding: 0 0 .3em 0; font-size: 11px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; opacity: .25;
		}
	.event p {
		margin: .6em 0 .2em 0;
		}
    .event p:last-child {
		margin-bottom: 0;
		}

/* SKILLS */
.skill-unit + h3,
.skill-unit + h4 {
	margin: 4em 0 1.6em;
	}
.skill-unit {
	margin-top: 1.4em;
	}
	.skill-unit h4 {
		opacity: .4; margin: 0 0 4px 0; font-weight: 400; font-size: 14px; position: relative; z-index: 10; padding-left: 0px;
		}
	.skill-unit .bar {
		position: relative; width: 100%; height: 6px;
		}
		.skill-unit .bar .progress {
            position: absolute; top: 0; left: 0; width: 0; height: 100%; background: #eee; -webkit-transition: width 1s ease-out; transition: width 1s ease-out;
			}
            .skill-unit .bar .progress span {
                position: absolute; top: -14px; right: 0; font-size: 11px; line-height: 26px; color: #fff; border: 3px solid #fff; padding: 0 7px; background : #222; border-radius: 50%;
			   }

/* TESTIMONIAL */
.testo {
    position: relative; padding: 1.4em 1.8em; margin: 4em 0 1em; border: 1px solid #eee; border-radius: 4px; box-shadow: inset 0 1px 0 #FFF,1px 1px 0 #FFF,2px 2px 0 #FFF,3px 3px 0 #eee;
	}
	.testo img {
 		display: block; margin: -60px auto 10px auto; max-height: 80px; border-radius: 50%; border: 6px solid #fff;
		}
	.testo h4 {
		position: relative; text-align: center; margin: 0; font-size: 15px;
		}
		.testo h4 span {
            display: block; font-size: 12px; font-weight: 400; color: #ccc;
			}
	.testo p {
		position: relative; margin: .6em 0 0.2em 0; font-size: 13px; text-align: center;
		}
	
	

/* TABLETS */
@media screen and (min-width: 768px) {
	    
    /* CONTACT FORM */
	.contact-form p {
		width: 50%; float: left;
		}
	.contact-form p:nth-of-type(1) {
		padding-right: 16px;
		}
	.contact-form p:nth-of-type(2) {
		padding-left: 16px;
		}
	.contact-form p:nth-of-type(2) label.error {
		left: 26px;
		}
	.contact-form p:nth-of-type(n+3){
		 width: 100%;
		}
		

	/* TIMELINE */
    .event {
        padding: 0 1em 3em 4.6em;
        }
    .event h6 {
		margin-left: -1.2em;
		}
    .event [class^="pw-icon-"], .event [class*=" pw-icon-"], .event .fa {
        font-size: 18px; top: -17px; left: -15px; width: 56px; line-height: 56px;
        }
}