html, body {
	margin: 0;
	height: 100%;
}
body {
	font-family: Arial, Helvetica, sans-serif;
}

.content-out {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 450px;
	height: 100vh;
	background-color: rgba(0,115,160,0.2);
	z-index: 999;
	overflow-y: auto;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.content-out.active {
	left: -450px;
}

.content-inner {
	padding: 15px 15px 15px 15px;
}

.btn-home {
	width: calc(100% - 30px);
	padding: 15px 15px;
	font-size: 18px;
	color: #fff;
	background-color: #0073A0;
	cursor: pointer;
}
.btn-home:hover {
	background-color: rgba(0,115,160,0.8);
}

.btn-content {
	width: calc(100% - 30px);
	padding: 6px 15px;
	font-size: 18px;
	color: #fff;
	background-color: #0073A0;
	cursor: pointer;
	margin-bottom: 10px;
}
.btn-content:hover {
	background-color: rgba(0,115,160,0.8);
}

.btn-back {
	border-bottom: 3px solid #fff;
}

.content {
	padding: 15px;
	background-color: rgba(255,255,255,0.5);
}

.cs-canvas {
	position: relative;
	width: 100%;
	height: 100vh;
	border: 1px solid rgba(0,0,0,0.1);
	box-sizing: border-box;
	overflow: hidden;
}
.canvas-loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
}
.canvas-loader > div {
	width: 20px;
	height: 20px;
	background-color: rgba(0,94,176,1);
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.canvas-loader .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.canvas-loader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% { 
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

h1 {
	font-size: 25px;
	color: rgba(16,124,166,1);
}

.cs-label {
	overflow: hidden;
	position: absolute;
}

.label-point {
	content: "";
	color: #fff;
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: #0073A0;
	border: 1px solid #fff;
	cursor: pointer;
	z-index: 1;
}
.label-point.fx-label-point {
	background-color: rgba(232,84,34,0.8);
}
.label-point:after{
	position: relative;
	top: 1px;
	left: 5px;
	content: "+";
	font-size: 16px;
	color: #fff;
	z-index: +10;
}
.label-point:hover {
	width: 30px;
	height: 30px;
	background-color: #0073A0;
}
.label-point:hover.fx-label-point {
	background-color: rgba(232,84,34,1);
}
.label-point:hover:after {
	font-size: 30px;
	color: #fff;
	top: -2px;
	left: 6px;
}
.label-point.fx-label-point:after{
	top: 0px;
	left: 7px;
	content: "-";
}
.label-point.fx-label-point:hover:after {
	top: -5px;
	left: 9px;
}

.label-point.sub-active {
	border-radius: 50%;
}

.label-point-pumpenkopf:hover:before {
	position: absolute;
	content: "Pumpenkopf / Hydraulik";
	display: block ruby;
	color: #fff;
	top: -45px;
	left: -1px;
	background-color: #0073A0;
	padding: 10px;
	border: 1px solid #fff;
}

.label-point-m_dichtung:hover:before {
	position: absolute;
	content: "Statische und mechanische Dichtung";
	display: block ruby;
	color: #fff;
	top: -45px;
	left: -1px;
	background-color: #0073A0;
	padding: 10px;
	border: 1px solid #fff;
}

.label-point-s_d_stutzen:hover:before {
	position: absolute;
	content: "Saug- und Druckstutzen";
	display: block ruby;
	color: #fff;
	top: -45px;
	left: -1px;
	background-color: #0073A0;
	padding: 10px;
	border: 1px solid #fff;
}

.label-point-laufrad:hover:before {
	position: absolute;
	content: "Laufrad";
	display: block ruby;
	color: #fff;
	top: -45px;
	left: -1px;
	background-color: #0073A0;
	padding: 10px;
	border: 1px solid #fff;
}

.label-point-gleitringdichtung:hover:before {
	position: absolute;
	content: "Gleitringdichtung";
	display: block ruby;
	color: #fff;
	top: -45px;
	left: -1px;
	background-color: #0073A0;
	padding: 10px;
	border: 1px solid #fff;
}

.label-point-steckwelle:hover:before {
	position: absolute;
	content: "Steckwelle";
	display: block ruby;
	color: #fff;
	top: -45px;
	left: -1px;
	background-color: #0073A0;
	padding: 10px;
	border: 1px solid #fff;
}

.hidden {
	display: none;
}

.content-nav {
	position: absolute;
	bottom: 0px;
	left: calc(50% - 110px);
	width: 225px;
	height: 85px;
	background-color: rgba(0,115,160,0.2);
	z-index: 999;
}

.gl-btn-home {
	position: absolute;
	left: 15px;
	top: 15px;
	width: 50px;
	height: 50px;
	border:2px solid #fff;
	border-radius: 5px;
	background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' fill='%230073A0' xmlns='http://www.w3.org/2000/svg'%3E%3Cg data-name='Layer 2'%3E%3Cg data-name='home'%3E%3Crect width='24' height='24' opacity='0'/%3E%3Crect x='10' y='14' width='4' height='7'/%3E%3Cpath d='M20.42 10.18L12.71 2.3a1 1 0 0 0-1.42 0l-7.71 7.89A2 2 0 0 0 3 11.62V20a2 2 0 0 0 1.89 2H8v-9a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v9h3.11A2 2 0 0 0 21 20v-8.38a2.07 2.07 0 0 0-.58-1.44z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	cursor: pointer;
}
.gl-btn-home:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' fill='%231D7EA3' xmlns='http://www.w3.org/2000/svg'%3E%3Cg data-name='Layer 2'%3E%3Cg data-name='home'%3E%3Crect width='24' height='24' opacity='0'/%3E%3Crect x='10' y='14' width='4' height='7'/%3E%3Cpath d='M20.42 10.18L12.71 2.3a1 1 0 0 0-1.42 0l-7.71 7.89A2 2 0 0 0 3 11.62V20a2 2 0 0 0 1.89 2H8v-9a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v9h3.11A2 2 0 0 0 21 20v-8.38a2.07 2.07 0 0 0-.58-1.44z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.gl-btn-menu {
	position: absolute;
	left: 85px;
	top: 15px;
	width: 50px;
	height: 50px;
	border:2px solid #fff;
	border-radius: 5px;
	background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Etext-align-justify%3C/title%3E%3Cdesc%3ECreated with sketchtool.%3C/desc%3E%3Cg id='text-edit' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='text-align-justify' fill='%23EC764E'%3E%3Cpath d='M19,7 L5,7 C4.44771525,7 4,6.55228475 4,6 C4,5.44771525 4.44771525,5 5,5 L19,5 C19.5522847,5 20,5.44771525 20,6 C20,6.55228475 19.5522847,7 19,7 Z M19,11 L5,11 C4.44771525,11 4,10.5522847 4,10 C4,9.44771525 4.44771525,9 5,9 L19,9 C19.5522847,9 20,9.44771525 20,10 C20,10.5522847 19.5522847,11 19,11 Z M19,15 L5,15 C4.44771525,15 4,14.5522847 4,14 C4,13.4477153 4.44771525,13 5,13 L19,13 C19.5522847,13 20,13.4477153 20,14 C20,14.5522847 19.5522847,15 19,15 Z M19,19 L5,19 C4.44771525,19 4,18.5522847 4,18 C4,17.4477153 4.44771525,17 5,17 L19,17 C19.5522847,17 20,17.4477153 20,18 C20,18.5522847 19.5522847,19 19,19 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	cursor: pointer;
}
.gl-btn-menu:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Etext-align-justify%3C/title%3E%3Cdesc%3ECreated with sketchtool.%3C/desc%3E%3Cg id='text-edit' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='text-align-justify' fill='%231D7EA3'%3E%3Cpath d='M19,7 L5,7 C4.44771525,7 4,6.55228475 4,6 C4,5.44771525 4.44771525,5 5,5 L19,5 C19.5522847,5 20,5.44771525 20,6 C20,6.55228475 19.5522847,7 19,7 Z M19,11 L5,11 C4.44771525,11 4,10.5522847 4,10 C4,9.44771525 4.44771525,9 5,9 L19,9 C19.5522847,9 20,9.44771525 20,10 C20,10.5522847 19.5522847,11 19,11 Z M19,15 L5,15 C4.44771525,15 4,14.5522847 4,14 C4,13.4477153 4.44771525,13 5,13 L19,13 C19.5522847,13 20,13.4477153 20,14 C20,14.5522847 19.5522847,15 19,15 Z M19,19 L5,19 C4.44771525,19 4,18.5522847 4,18 C4,17.4477153 4.44771525,17 5,17 L19,17 C19.5522847,17 20,17.4477153 20,18 C20,18.5522847 19.5522847,19 19,19 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.gl-btn-menu.active {
	background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Etext-align-justify%3C/title%3E%3Cdesc%3ECreated with sketchtool.%3C/desc%3E%3Cg id='text-edit' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='text-align-justify' fill='%230073A0'%3E%3Cpath d='M19,7 L5,7 C4.44771525,7 4,6.55228475 4,6 C4,5.44771525 4.44771525,5 5,5 L19,5 C19.5522847,5 20,5.44771525 20,6 C20,6.55228475 19.5522847,7 19,7 Z M19,11 L5,11 C4.44771525,11 4,10.5522847 4,10 C4,9.44771525 4.44771525,9 5,9 L19,9 C19.5522847,9 20,9.44771525 20,10 C20,10.5522847 19.5522847,11 19,11 Z M19,15 L5,15 C4.44771525,15 4,14.5522847 4,14 C4,13.4477153 4.44771525,13 5,13 L19,13 C19.5522847,13 20,13.4477153 20,14 C20,14.5522847 19.5522847,15 19,15 Z M19,19 L5,19 C4.44771525,19 4,18.5522847 4,18 C4,17.4477153 4.44771525,17 5,17 L19,17 C19.5522847,17 20,17.4477153 20,18 C20,18.5522847 19.5522847,19 19,19 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.gl-btn-menu.active:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Etext-align-justify%3C/title%3E%3Cdesc%3ECreated with sketchtool.%3C/desc%3E%3Cg id='text-edit' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='text-align-justify' fill='%231D7EA3'%3E%3Cpath d='M19,7 L5,7 C4.44771525,7 4,6.55228475 4,6 C4,5.44771525 4.44771525,5 5,5 L19,5 C19.5522847,5 20,5.44771525 20,6 C20,6.55228475 19.5522847,7 19,7 Z M19,11 L5,11 C4.44771525,11 4,10.5522847 4,10 C4,9.44771525 4.44771525,9 5,9 L19,9 C19.5522847,9 20,9.44771525 20,10 C20,10.5522847 19.5522847,11 19,11 Z M19,15 L5,15 C4.44771525,15 4,14.5522847 4,14 C4,13.4477153 4.44771525,13 5,13 L19,13 C19.5522847,13 20,13.4477153 20,14 C20,14.5522847 19.5522847,15 19,15 Z M19,19 L5,19 C4.44771525,19 4,18.5522847 4,18 C4,17.4477153 4.44771525,17 5,17 L19,17 C19.5522847,17 20,17.4477153 20,18 C20,18.5522847 19.5522847,19 19,19 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.gl-btn-play {
	position: absolute;
	left: 155px;
	top: 15px;
	width: 50px;
	height: 50px;
	border:2px solid #fff;
	border-radius: 5px;
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 408.221 408.221' style='enable-background:new 0 0 408.221 408.221;' fill='%230073A0' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M204.11,0C91.388,0,0,91.388,0,204.111c0,112.725,91.388,204.11,204.11,204.11c112.729,0,204.11-91.385,204.11-204.11 C408.221,91.388,316.839,0,204.11,0z M286.547,229.971l-126.368,72.471c-17.003,9.75-30.781,1.763-30.781-17.834V140.012 c0-19.602,13.777-27.575,30.781-17.827l126.368,72.466C303.551,204.403,303.551,220.217,286.547,229.971z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	cursor: pointer;
}
.gl-btn-play:hover {
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 408.221 408.221' style='enable-background:new 0 0 408.221 408.221;' fill='%231D7EA3' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M204.11,0C91.388,0,0,91.388,0,204.111c0,112.725,91.388,204.11,204.11,204.11c112.729,0,204.11-91.385,204.11-204.11 C408.221,91.388,316.839,0,204.11,0z M286.547,229.971l-126.368,72.471c-17.003,9.75-30.781,1.763-30.781-17.834V140.012 c0-19.602,13.777-27.575,30.781-17.827l126.368,72.466C303.551,204.403,303.551,220.217,286.547,229.971z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
}

.gl-btn-play.active {

	background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' fill='%23EC764E' xml:space='preserve'%3E%3Cpath d='M256,0C114.615,0,0,114.615,0,256s114.615,256,256,256s256-114.615,256-256S397.385,0,256,0z M336,320 c0,8.837-7.163,16-16,16H192c-8.837,0-16-7.163-16-16V192c0-8.837,7.163-16,16-16h128c8.837,0,16,7.163,16,16V320z'/%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	cursor: pointer;
}
.gl-btn-play.active:hover {
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' fill='%231D7EA3' xml:space='preserve'%3E%3Cpath d='M256,0C114.615,0,0,114.615,0,256s114.615,256,256,256s256-114.615,256-256S397.385,0,256,0z M336,320 c0,8.837-7.163,16-16,16H192c-8.837,0-16-7.163-16-16V192c0-8.837,7.163-16,16-16h128c8.837,0,16,7.163,16,16V320z'/%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}

.turn-360 {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 110px;
	height: 80px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 -66 512 512' xmlns='http://www.w3.org/2000/svg' fill='%230073A0'%3E%3Cpath d='m138.664062 230.164062c26.601563 0 48.070313-11.78125 48.070313-42.941406v-3.609375c0-15.390625-8.167969-23.75-19.378906-27.929687 9.5-4.371094 14.628906-17.292969 14.628906-31.160156 0-25.652344-18.238281-34.390626-42.371094-34.390626-32.679687 0-43.316406 19.1875-43.316406 34.007813 0 9.121094 1.707031 11.972656 15.386719 11.972656 11.019531 0 13.871094-4.371093 13.871094-10.832031 0-7.410156 4.75-9.6875 14.058593-9.6875 7.792969 0 14.0625 2.660156 14.0625 13.679688 0 15.390624-7.601562 16.339843-14.820312 16.339843-6.460938 0-8.550781 5.699219-8.550781 11.402344 0 5.699219 2.089843 11.398437 8.550781 11.398437 10.449219 0 18.242187 2.46875 18.242187 15.199219v3.609375c0 12.351563-4.5625 17.101563-17.480468 17.101563-8.550782 0-16.910157-2.089844-16.910157-11.019531 0-7.222657-3.042969-9.882813-15.199219-9.882813-10.453124 0-14.0625 2.28125-14.0625 10.832031 0 15.960938 12.539063 35.910156 45.21875 35.910156zm0 0'/%3E%3Cpath d='m256.273438 115.972656c8.929687 0 16.53125 3.800782 16.53125 11.019532 0 8.738281 7.21875 10.828124 15.390624 10.828124 9.5 0 13.871094-2.847656 13.871094-11.96875 0-15.769531-12.730468-35.71875-44.839844-35.71875-27.363281 0-48.453124 12.160157-48.453124 44.839844v50.351563c0 32.679687 20.519531 44.839843 46.742187 44.839843 26.21875 0 46.550781-12.160156 46.550781-44.839843v-1.710938c0-30.398437-18.242187-39.898437-39.902344-39.898437-9.117187 0-17.667968 1.707031-23.75 8.355468v-17.097656c0-13.113281 6.652344-19 17.859376-19zm-.949219 50.539063c10.832031 0 17.101562 5.320312 17.101562 19.191406v1.710937c0 13.109376-6.269531 18.808594-16.910156 18.808594s-17.101563-5.699218-17.101563-18.808594v-3.421874c0-12.539063 6.652344-17.480469 16.910157-17.480469zm0 0'/%3E%3Cpath d='m371.796875 169.933594c5.886719 0 9.5-3.992188 9.5-9.691406 0-5.890626-3.613281-9.5-9.5-9.5-6.082031 0-9.691406 3.609374-9.691406 9.5 0 5.699218 3.609375 9.691406 9.691406 9.691406zm0 0'/%3E%3Cpath d='m371.605469 230.164062c26.21875 0 46.738281-12.160156 46.738281-44.84375v-50.347656c0-32.683594-20.519531-44.839844-46.738281-44.839844-26.222657 0-46.550781 12.15625-46.550781 44.839844v50.347656c0 32.683594 20.328124 44.84375 46.550781 44.84375zm-16.910157-95.191406c0-13.109375 6.269532-19 16.910157-19s17.097656 5.890625 17.097656 19v50.351563c0 13.109375-6.457031 19-17.097656 19s-16.910157-5.890625-16.910157-19zm0 0'/%3E%3Cpath d='m454.351562 90c24.8125 0 45-20.1875 45-45s-20.1875-45-45-45c-24.816406 0-45 20.1875-45 45s20.183594 45 45 45zm0-60c8.269532 0 15 6.730469 15 15s-6.730468 15-15 15c-8.273437 0-15-6.730469-15-15s6.726563-15 15-15zm0 0'/%3E%3Cpath d='m466.847656 146.503906c-6.824218-4.691406-16.164062-2.96875-20.859375 3.859375-4.695312 6.824219-2.96875 16.164063 3.855469 20.859375 14.667969 10.089844 32.15625 26.269532 32.15625 46.039063 0 17.9375-14.941406 36.519531-42.078125 52.332031-29.671875 17.285156-72.117187 30.132812-119.515625 36.167969-8.21875 1.046875-14.03125 8.558593-12.984375 16.777343.964844 7.574219 7.421875 13.105469 14.859375 13.105469.632812 0 1.273438-.039062 1.917969-.121093 52.039062-6.628907 97.277343-20.464844 130.824219-40.011719 37.273437-21.714844 56.976562-48.773438 56.976562-78.25 0-25.96875-15.613281-50.4375-45.152344-70.757813zm0 0'/%3E%3Cpath d='m226.605469 274.15625c-5.855469-5.859375-15.355469-5.859375-21.210938 0-5.859375 5.855469-5.859375 15.355469 0 21.210938l13.0625 13.066406c-47.960937-3.417969-92.023437-13.363282-126.761719-28.855469-39.207031-17.492187-61.695312-40.203125-61.695312-62.316406 0-17.652344 14.554688-36 40.980469-51.664063 7.128906-4.226562 9.480469-13.425781 5.257812-20.550781-4.226562-7.128906-13.425781-9.480469-20.554687-5.257813-46.023438 27.28125-55.683594 57.1875-55.683594 77.472657 0 34.992187 28.226562 66.851562 79.476562 89.714843 38.949219 17.371094 88.226563 28.324219 141.414063 31.679688l-15.496094 15.5c-5.859375 5.855469-5.859375 15.355469 0 21.210938 2.929688 2.929687 6.765625 4.394531 10.605469 4.394531s7.679688-1.464844 10.605469-4.394531l40-40c5.859375-5.855469 5.859375-15.351563 0-21.210938zm0 0'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	z-index: 999;
}

.backlink {
	position: absolute;
	bottom: 5px;
	right: 20px;
	font-size: 12px;
	color: #0073A0;
}
.backlink a {
	color: #0073A0;
}