/* ==========================================================================
   SVG Symbols
============================================================================= */
.symbol {
	display: inline-block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}
.gps {
  width: 0.9990234375em;
}
.mail {
  width: 1.142578125em;
}
.phone {
  width: 0.9990234375em;
}
.icon-pin-add {
  width: 0.8671875em;
}
.quality {
  width: 0.845703125em;
}

/* ==========================================================================
   Menu button
============================================================================= */
.menu-button {
	display: inline-block;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 1em;
	height: 1em;
	text-indent: -9999px;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
	vertical-align: middle;
	background-color: transparent;
}
.menu-button:focus {
	outline: none;
}
.menu-button span {
	display: block;
	position: absolute;
	top: 0.458em;
	left: 0;
	right: 0;
	height: 0.083em;
	background-color: currentColor;
	transition: background-color 0s 0.3s;
}
.menu-button span::before,
.menu-button span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 0.083em;
	background-color: currentColor;
	content: "";
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}
.menu-button span::before {
	top: -0.333em;
	transition-property: top, transform, background-color;
}
.menu-button span::after {
	bottom: -0.333em;
	transition-property: bottom, transform, background-color;
}
.menu-button.active {
	background-color: transparent;
}
.menu-button.active span {
	background-color: transparent;
}
.menu-button.active span::before {
	top: 0;
	transform: rotate(45deg);
}
.menu-button.active span::after {
	bottom: 0;
	transform: rotate(-45deg);
}
.menu-button.active span::before,
.menu-button.active span::after {
	transition-delay: 0s, 0.3s;
}
