/**
* MAIN CSS FILE OF AW WEBSITE
* @author MineDragonCZ_
*/

@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap&family=Varela+Round&family=Mouse+Memoirs&display=swap');
:root{
	--author: "MineDragonCZ_";
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: 4px;
    scrollbar-color: var(--secondary);
	scrollbar-track-color: transparent;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  *::-webkit-scrollbar-track {
    background: transparent;
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 4px;
    border: none;
  }
/* =========================== */
html, body {
    max-width: 100%;
}
html{
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body{
	background: var(--primary);
	font-family: 'Minecraftia', sans-serif;
	transition: all 0.7s ease-in-out;
	position: relative;
	min-height: 100vh;
	position: relative;
}

* {
	scroll-padding-top: 100px !important;
}

.div-center{
	display: flex;
	justify-content: center;
	align-items: center;
}

#bodyLoading{
	height: 100vh;
	opacity: 0;
	transition: all 0.7s ease-in-out;
}

#bodyContent{
	opacity: 0;
	transition: all 0.7s ease-in-out;
}

h1, h2, h3, h4, h5, h6, p, span, a, td{
	color: var(--fifth);
}
a{
	font-weight: bold;
}
.nodecor{
	text-decoration: none !important;
}
.nobold{
	font-weight: normal !important;
}
a:hover{
	color: var(--secondary) !important;
}
a.pp-active{
	color: var(--secondary) !important;
	opacity: 1 !important;
}
a:focus{
	color: var(--secondary) !important;
}

.pp-page{
	display: none;
}

.backImg{
	padding-top: 50px;
	background-image: var(--backimg1) !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	position: relative;
	width: 100%;
	left: 0;
	z-index: -2;
	transition: all 0.5s ease-in-out;
}

.backImg-noindex{
	z-index: initial !important;
}

.backImg-fixed{
	background-attachment: fixed !important;
}

.slideshow-background{
	background-image: linear-gradient(var(--waves2) 0%, var(--waves5) 90%), var(--backImg) !important;
	background-position: center;
	background-repeat: no-repeat !important;
	background-size: cover;
}

.b-radius-none{
	border-radius: 0 !important;
}

.pixel-img{
	image-rendering: pixelated;
}

.preloader{
	display: block;
	position: fixed;
	z-index: -5;
	left: -300%;
	width: 100px;
	height: 100px;
}
.preloader1{
	background-image: var(--backimg1);
}
.preloader2{
	background-image: var(--backimg2);
}
.preloader3{
	background-image: var(--backimg3);
}
.preloader4{
	background-image: var(--backimg4);
}
.preloader5{
	background-image: url("/tools/src/imgs/ikonky/no-wifi.png");
}
/*@keyframes header-back {
	20%{
		background-image: var(--backimg1);
	}
	25%{
		background-image: var(--backimg2);
	}
	45%{
		background-image: var(--backimg2);
	}
	50%{
		background-image: var(--backimg3);
	}
	70%{
		background-image: var(--backimg3);
	}
	75%{
		background-image: var(--backimg4);
	}
	95%{
		background-image: var(--backimg4);
	}
	100%{
		background-image: var(--backimg1);
	}
}*/
.skin{
	aspect-ratio: 1/1;
	position: relative;
	filter: drop-shadow(5px 5px 5px #00000077);
}
.skin > img{
	width: 85%;
}
header > .waves{
	position: absolute;
	width: 150%;
	bottom: 0;
	overflow: hidden;
}
header{
	overflow: hidden;
	height: max(100vh, 900px);
	max-height: 80vw;
}


.check-validity:invalid {
	border: 2px solid #b10f0f77 !important;
}

.check-validity:valid {
	border: 2px solid #1db10f77 !important;
}

.draggable-cursor{
	cursor: move;
}

.avatar {
	margin: 3px;
	transition: margin .3s;
	position: relative;
}
.avatar > img{
	width: 40px;
	height: 40px;
	border-radius: 20px;
}
.avatar > span{
	position: absolute;
	opacity: 0;
	transition: opacity .3s;
	top: 20px;
	left: -15000px;
	text-align: center;
	z-index: 99;
}
.avatar > span > span{
	z-index: 99;
}
.avatar img:hover + span{
	opacity: 1;
	left: 0;
}
.avatars-list{
	position: relative;
}


@keyframes waving {
	0%{
		transform: translateX(0);
	}
	50%{
		transform: translateX(-25%);
	}
	100%{
		transform: translateX(0);
	}
}
@keyframes waving-reverse {
	0%{
		transform: translateX(-25%);
	}
	50%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(-25%);
	}
}

header > .waves > .p1{
	fill: var(--waves1);
	/*animation: waving 25s infinite ease-in-out;*/
	transition: all 0.5s ease-in-out;
}
header > .waves > .p2{
	fill: var(--waves2);
	/*animation: waving-reverse 45s infinite ease-in-out;*/
	transition: all 0.5s ease-in-out;
}
header > .waves > .p3{
	fill: var(--waves3);
	/*animation: waving 55s infinite ease-in-out;*/
	transition: all 0.5s ease-in-out;
}
header > .waves > .p4{
	fill: var(--waves4);
	/*animation: waving-reverse 68s infinite ease-in-out;*/
	transition: all 0.5s ease-in-out;
}
header > .waves > .p5{
	fill: var(--waves5);
	/*animation: waving 75s infinite ease-in-out;*/
	transition: all 0.5s ease-in-out;
}

.h-title{
	margin-top: 120px;
	font-family: 'Kdam Thmor Pro', sans-serif;
	font-size: 105px;
	text-align: center;
	color: #fff;

}
.h-desc{
	font-size: 35px;
	text-align: left;
	font-weight: bold;
	text-align: center;
	color: #fff;
	white-space: nowrap; 
	/*padding-bottom: 150px;*/
}
header > .text-dec{
	position: absolute;
	height: 100%;
	top: 0;
	left: -25px;
	z-index: -1;
	border-radius: 0 25% 100% 0;
}
header > .text-dec-1{
	width: 45%;
	backdrop-filter: blur(15px);
}
header > .text-dec-2{
	width: 55%;
	backdrop-filter: blur(5px);
}
header > .text-dec-3{
	width: 65%;
	backdrop-filter: blur(2px);
}


.navbar{
	transition: all 0.5s ease-in-out !important;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	/*background: var(--navback);*/
	padding-bottom: 25px;
}
.nav-link{
	cursor: pointer;
	font-size: 110%;
	color: var(--navlink);
	font-weight: bold;
	opacity: 0.7;
	transition: opacity .3s;
}
.nav-link:hover{
	color: var(--navlink) !important;
	opacity: 1;
}
.nav-link:focus{
	color: var(--navlink);
}
.disabledd{
	font-size: 130%;
	opacity: 0.3 !important;
	cursor: not-allowed !important;
}
.disabledd-2{
	font-size: 100% !important;
}
.disabledd:hover{
	opacity: 0.3 !important;
}

.navbar-toggler{
	color: var(--navlink) !important;
	background: transparent;
	border: none;
	box-shadow: none;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.dropdown-button{
	cursor: pointer;
}
.dropdown-button::after{
	content: "";
}
.dropdown-content{
	list-style-type: none;
	position: absolute;
	padding-left: 5px;
	display: none;
	background: var(--cardbacks);
	padding: 15px;
	border: none;
	border-radius: 3px;
	min-width: 100%;
	width: fit-content;
}
.dropdown-content-up{
	bottom: 30px !important;
}
.dropdown:hover .dropdown-content{
	display: block;
}
.dropdown-content > li{
	left: 0;
}
.dropdown-link{
	text-decoration: none;
	font-size: 130%;
	color: var(--navlink);
	opacity: 0.7;
	transition: opacity .3s;
}
.dropdown-link:hover{	
	color: var(--navlink) !important;
	opacity: 1;
}

.toggleDown{
	display: none;
}
.toggleDown:has(> li > a.pp-active) {
	display: block;
}


.underlined:after,
.underlined-80:after,
.underlined-40:after,
.underlined-120:after {
	content: "" !important;
	display: block !important;
	height: 4px !important;
	width: var(--width);
	margin: 10px auto auto !important;
	border-radius: 50px !important;
	opacity: 1 !important;
	background: var(--secondary) !important;
	box-sizing: border-box !important;
	transform: translateY(-10px);
}

.underlined-40:after {
	--width: 40px !important;
}

.underlined-80:after {
	--width: 80px !important;
}

.underlined-120:after {
	--width: 120px !important;
}

.underlined {
	padding-bottom: 0;
}

.underlined-left:after {
	margin: 10px 0 auto !important;
}

.underlined-right:after {
	margin: 10px auto 0 !important;
	margin-right: 0 !important;
}


.topic-title{
	font-size: 31px;
	text-align: center;
	color: var(--fifth);
}
.card-title{
	font-size: 24px;
	text-align: center;
	color: var(--fifth);
}
.card-desc{
	font-size: 17px;
	text-align: left;
	color: var(--third);
}
.hr {
	border-color: var(--third);
}
.card-desc-larger{
	font-size: 21px;
	text-align: left;
	color: var(--third);
}
.card-foot{
	font-size: 17px;
	color: var(--secondary);
	text-align: left;
	opacity: 0.8;
}

.karta-normal{
	background: var(--cardbacks);
	color: var(--fifth);
	padding: 45px;
	border-radius: 10px;

	box-shadow: var(--card-shadow);
	z-index: 11;
	position: relative;
}

.karta-normal-back{
	background: var(--cardbacks) !important;
	color: var(--fifth);
}

.karta-normal-p-min{
	background: var(--cardbacks);
	color: var(--fifth);
	padding: 25px;
	border-radius: 8px;

	box-shadow: var(--card-shadow);
	z-index: 11;
	position: relative;
}
.img-shadow{
	filter: drop-shadow(-25px 80px 20px rgba(0,0,0,0.3));
	z-index: 8;
}
.no-shadow {
	box-shadow: none;
}
.img-100{
	width: 100%;
	aspect-ratio: initial !important;
}

footer{
	background: var(--footer) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1016%26quot%3b)' fill='none'%3e%3cpath d='M-76.45 548.89L-76.45 548.89' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-76.45 548.89L56.4 554.22' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-76.45 548.89L-42.99 684.35' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-76.45 548.89L40.82 689.61' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-76.45 548.89L54.24 362.6' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-42.99 684.35L-42.99 684.35' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-42.99 684.35L40.82 689.61' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-42.99 684.35L56.4 554.22' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-42.99 684.35L214.8 682.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-42.99 684.35L204 539.51' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-42.99 684.35L54.24 362.6' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M54.24 362.6L54.24 362.6' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M54.24 362.6L211.66 360.12' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M54.24 362.6L56.4 554.22' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M54.24 362.6L204 539.51' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M56.4 554.22L56.4 554.22' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M56.4 554.22L40.82 689.61' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.82 689.61L40.82 689.61' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.82 689.61L214.8 682.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.82 689.61L204 539.51' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M40.82 689.61L360.04 658.12' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M211.66 360.12L211.66 360.12' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M211.66 360.12L364.7 389.82' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M211.66 360.12L204 539.51' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M211.66 360.12L56.4 554.22' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M204 539.51L204 539.51' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M204 539.51L214.8 682.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M204 539.51L56.4 554.22' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M214.8 682.54L214.8 682.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M214.8 682.54L360.04 658.12' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M364.7 389.82L364.7 389.82' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M364.7 389.82L402.7 552.02' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M364.7 389.82L535.02 381.35' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M364.7 389.82L499.92 527.98' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M402.7 552.02L402.7 552.02' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M402.7 552.02L499.92 527.98' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M402.7 552.02L360.04 658.12' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M402.7 552.02L511.56 705.42' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M402.7 552.02L204 539.51' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M360.04 658.12L360.04 658.12' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M360.04 658.12L511.56 705.42' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M360.04 658.12L499.92 527.98' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M360.04 658.12L204 539.51' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M535.02 381.35L535.02 381.35' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M535.02 381.35L645.87 350.63' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M535.02 381.35L499.92 527.98' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M499.92 527.98L499.92 527.98' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M499.92 527.98L641.24 543.07' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M511.56 705.42L511.56 705.42' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M511.56 705.42L651.73 681.34' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.16 248.95L645.16 248.95' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.16 248.95L645.87 350.63' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.16 248.95L801.37 242.01' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.16 248.95L535.02 381.35' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.16 248.95L788.23 362.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.16 248.95L641.24 543.07' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.87 350.63L645.87 350.63' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.87 350.63L788.23 362.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.87 350.63L801.37 242.01' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M641.24 543.07L641.24 543.07' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M641.24 543.07L651.73 681.34' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M641.24 543.07L832.42 553.13' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M641.24 543.07L645.87 350.63' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M641.24 543.07L535.02 381.35' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M641.24 543.07L511.56 705.42' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M651.73 681.34L651.73 681.34' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M651.73 681.34L800.51 709.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M651.73 681.34L499.92 527.98' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M651.73 681.34L832.42 553.13' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M651.73 681.34L402.7 552.02' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M801.37 242.01L801.37 242.01' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M801.37 242.01L788.23 362.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M801.37 242.01L971.06 234.62' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.23 362.21L788.23 362.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.23 362.21L948.61 404.14' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.23 362.21L832.42 553.13' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M832.42 553.13L832.42 553.13' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M832.42 553.13L983.73 516.37' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M832.42 553.13L800.51 709.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M800.51 709.54L800.51 709.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M800.51 709.54L980.13 671' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M800.51 709.54L641.24 543.07' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1006.9 -94.21L1006.9 -94.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1006.9 -94.21L1096.75 -87.76' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1006.9 -94.21L1158.5 84.45' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M971.06 234.62L971.06 234.62' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M971.06 234.62L1141.44 222.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M971.06 234.62L948.61 404.14' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M971.06 234.62L788.23 362.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M971.06 234.62L1151.52 370.78' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M948.61 404.14L948.61 404.14' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M948.61 404.14L983.73 516.37' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M983.73 516.37L983.73 516.37' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M983.73 516.37L1116.25 507.05' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M983.73 516.37L980.13 671' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M980.13 671L980.13 671' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M980.13 671L1090.41 704.19' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M980.13 671L832.42 553.13' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1096.75 -87.76L1096.75 -87.76' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1096.75 -87.76L1158.5 84.45' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1096.75 -87.76L1308.09 -77.81' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1158.5 84.45L1158.5 84.45' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1158.5 84.45L1141.44 222.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1158.5 84.45L1304.22 110.94' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1158.5 84.45L1293.22 253.29' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.44 222.54L1141.44 222.54' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.44 222.54L1151.52 370.78' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.44 222.54L1293.22 253.29' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.44 222.54L1304.22 110.94' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.44 222.54L1304.03 388.23' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.52 370.78L1151.52 370.78' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.52 370.78L1116.25 507.05' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.52 370.78L1304.03 388.23' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.52 370.78L1293.22 253.29' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1116.25 507.05L1116.25 507.05' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1116.25 507.05L1264.46 554.34' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1090.41 704.19L1090.41 704.19' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1090.41 704.19L1116.25 507.05' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1090.41 704.19L983.73 516.37' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1090.41 704.19L1264.46 554.34' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1308.09 -77.81L1308.09 -77.81' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1308.09 -77.81L1420.85 -39.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1308.09 -77.81L1304.22 110.94' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1308.09 -77.81L1402.94 97.27' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1304.22 110.94L1304.22 110.94' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1304.22 110.94L1402.94 97.27' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1304.22 110.94L1293.22 253.29' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1304.22 110.94L1435.89 243.09' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1304.22 110.94L1420.85 -39.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1293.22 253.29L1293.22 253.29' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1293.22 253.29L1304.03 388.23' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1293.22 253.29L1435.89 243.09' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1293.22 253.29L1425.76 360.02' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1304.03 388.23L1304.03 388.23' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1304.03 388.23L1425.76 360.02' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1264.46 554.34L1264.46 554.34' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1264.46 554.34L1312.23 641.52' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1312.23 641.52L1312.23 641.52' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1312.23 641.52L1448.87 638.62' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1312.23 641.52L1090.41 704.19' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1312.23 641.52L1116.25 507.05' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1420.85 -39.21L1420.85 -39.21' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1420.85 -39.21L1402.94 97.27' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1420.85 -39.21L1563.05 -52.68' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1420.85 -39.21L1560.93 57.63' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1420.85 -39.21L1582.65 189.7' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1402.94 97.27L1402.94 97.27' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.89 243.09L1435.89 243.09' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.89 243.09L1425.76 360.02' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.89 243.09L1402.94 97.27' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.89 243.09L1582.65 189.7' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.89 243.09L1564.88 363.72' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1425.76 360.02L1425.76 360.02' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1425.76 360.02L1564.88 363.72' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1425.76 360.02L1607.03 490.39' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1425.76 360.02L1582.65 189.7' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1448.87 638.62L1448.87 638.62' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1448.87 638.62L1561.01 685.66' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1448.87 638.62L1264.46 554.34' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1448.87 638.62L1607.03 490.39' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1563.05 -52.68L1563.05 -52.68' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1563.05 -52.68L1560.93 57.63' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1563.05 -52.68L1402.94 97.27' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1560.93 57.63L1560.93 57.63' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1560.93 57.63L1582.65 189.7' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1582.65 189.7L1582.65 189.7' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1564.88 363.72L1564.88 363.72' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1564.88 363.72L1607.03 490.39' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1564.88 363.72L1582.65 189.7' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1607.03 490.39L1607.03 490.39' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1607.03 490.39L1561.01 685.66' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1561.01 685.66L1561.01 685.66' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1561.01 685.66L1312.23 641.52' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1561.01 685.66L1564.88 363.72' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1561.01 685.66L1264.46 554.34' stroke='rgba(55%2c 116%2c 221%2c 0.1)' stroke-width='1.5'%3e%3c/path%3e%3ccircle r='5' cx='-76.45' cy='548.89' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='-42.99' cy='684.35' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='54.24' cy='362.6' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='56.4' cy='554.22' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='40.82' cy='689.61' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='211.66' cy='360.12' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='204' cy='539.51' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='214.8' cy='682.54' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='364.7' cy='389.82' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='402.7' cy='552.02' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='360.04' cy='658.12' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='535.02' cy='381.35' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='499.92' cy='527.98' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='511.56' cy='705.42' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='645.16' cy='248.95' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='645.87' cy='350.63' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='641.24' cy='543.07' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='651.73' cy='681.34' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='801.37' cy='242.01' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='788.23' cy='362.21' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='832.42' cy='553.13' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='800.51' cy='709.54' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1006.9' cy='-94.21' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='971.06' cy='234.62' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='948.61' cy='404.14' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='983.73' cy='516.37' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='980.13' cy='671' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1096.75' cy='-87.76' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1158.5' cy='84.45' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1141.44' cy='222.54' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1151.52' cy='370.78' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1116.25' cy='507.05' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1090.41' cy='704.19' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1308.09' cy='-77.81' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1304.22' cy='110.94' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1293.22' cy='253.29' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1304.03' cy='388.23' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1264.46' cy='554.34' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1312.23' cy='641.52' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1420.85' cy='-39.21' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1402.94' cy='97.27' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1435.89' cy='243.09' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1425.76' cy='360.02' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1448.87' cy='638.62' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1563.05' cy='-52.68' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1560.93' cy='57.63' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1582.65' cy='189.7' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1564.88' cy='363.72' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1607.03' cy='490.39' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3ccircle r='5' cx='1561.01' cy='685.66' fill='rgba(55%2c 116%2c 221%2c 0.1)'%3e%3c/circle%3e%3cpath d='M-46.7 491.82L-46.7 491.82' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-46.7 491.82L-45.38 681.24' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-46.7 491.82L71.52 691.24' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-46.7 491.82L196.39 494.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-46.7 491.82L262.02 671.1' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-46.7 491.82L384.39 515.97' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-46.7 491.82L345.15 687.35' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M534.59 514.6L534.59 514.6' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M534.59 514.6L645.73 534.42' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M534.59 514.6L384.39 515.97' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M534.59 514.6L648.01 381.01' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M533.94 711.68L533.94 711.68' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M533.94 711.68L686.52 680.11' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M533.94 711.68L345.15 687.35' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.73 534.42L645.73 534.42' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M645.73 534.42L686.52 680.11' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.95 391.9L788.95 391.9' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.95 391.9L837.61 513.63' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.95 391.9L648.01 381.01' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.95 391.9L974.71 375.06' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M788.95 391.9L645.73 534.42' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M837.61 513.63L837.61 513.63' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M837.61 513.63L951.55 512.28' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M837.61 513.63L810.27 646.12' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M837.61 513.63L645.73 534.42' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M837.61 513.63L974.71 375.06' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M837.61 513.63L992.68 657.31' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1289.03 78.9L1289.03 78.9' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1289.03 78.9L1445.81 47.94' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1289.03 78.9L1408 233.99' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1289.03 78.9L1435.46 -62.77' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1289.03 78.9L1091.29 209.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1289.03 78.9L1538.13 195.43' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1289.03 78.9L1564.69 62.5' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.13 363.91L1262.13 363.91' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.13 363.91L1151.95 378.82' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.13 363.91L1387.73 358.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.13 363.91L1263.26 536.89' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.13 363.91L1408 233.99' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.13 363.91L1418.71 528.71' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1262.13 363.91L1091.29 209.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1562.62 -92.08L1562.62 -92.08' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1562.62 -92.08L1435.46 -62.77' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1562.62 -92.08L1564.69 62.5' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1562.62 -92.08L1445.81 47.94' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1562.62 -92.08L1538.13 195.43' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1610.26 338L1610.26 338' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1610.26 338L1538.13 195.43' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1610.26 338L1554.67 552.94' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1610.26 338L1387.73 358.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1610.26 338L1408 233.99' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1554.67 552.94L1554.67 552.94' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1554.67 552.94L1548.65 652.55' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1554.67 552.94L1418.71 528.71' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1554.67 552.94L1424.27 687.95' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1554.67 552.94L1387.73 358.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-45.38 681.24L-45.38 681.24' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-45.38 681.24L71.52 691.24' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-45.38 681.24L196.39 494.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M-45.38 681.24L262.02 671.1' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M71.52 691.24L71.52 691.24' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M71.52 691.24L262.02 671.1' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M71.52 691.24L196.39 494.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M71.52 691.24L345.15 687.35' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M71.52 691.24L384.39 515.97' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M196.39 494.41L196.39 494.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M196.39 494.41L262.02 671.1' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M196.39 494.41L384.39 515.97' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M262.02 671.1L262.02 671.1' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M262.02 671.1L345.15 687.35' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M262.02 671.1L384.39 515.97' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M262.02 671.1L533.94 711.68' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M384.39 515.97L384.39 515.97' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M384.39 515.97L345.15 687.35' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M345.15 687.35L345.15 687.35' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M345.15 687.35L196.39 494.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M345.15 687.35L534.59 514.6' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M648.01 381.01L648.01 381.01' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M648.01 381.01L645.73 534.42' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M686.52 680.11L686.52 680.11' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M686.52 680.11L810.27 646.12' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M810.27 646.12L810.27 646.12' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M810.27 646.12L992.68 657.31' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M974.71 375.06L974.71 375.06' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M974.71 375.06L951.55 512.28' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M974.71 375.06L1151.95 378.82' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M951.55 512.28L951.55 512.28' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M951.55 512.28L992.68 657.31' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.68 657.31L992.68 657.31' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.68 657.31L1095.97 561.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M992.68 657.31L1141.85 659.67' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1091.29 209.27L1091.29 209.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1091.29 209.27L1151.95 378.82' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1091.29 209.27L974.71 375.06' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1091.29 209.27L1408 233.99' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.95 378.82L1151.95 378.82' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1151.95 378.82L1095.97 561.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1095.97 561.41L1095.97 561.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1095.97 561.41L1141.85 659.67' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.85 659.67L1141.85 659.67' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.85 659.67L1263.26 536.89' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.85 659.67L951.55 512.28' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1141.85 659.67L1151.95 378.82' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1263.26 536.89L1263.26 536.89' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1263.26 536.89L1418.71 528.71' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1263.26 536.89L1095.97 561.41' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.46 -62.77L1435.46 -62.77' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.46 -62.77L1445.81 47.94' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.46 -62.77L1564.69 62.5' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1435.46 -62.77L1538.13 195.43' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1445.81 47.94L1445.81 47.94' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1445.81 47.94L1564.69 62.5' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1408 233.99L1408 233.99' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1408 233.99L1387.73 358.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1408 233.99L1538.13 195.43' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1387.73 358.27L1387.73 358.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1387.73 358.27L1418.71 528.71' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1387.73 358.27L1263.26 536.89' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1387.73 358.27L1538.13 195.43' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1418.71 528.71L1418.71 528.71' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1418.71 528.71L1424.27 687.95' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1424.27 687.95L1424.27 687.95' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1424.27 687.95L1548.65 652.55' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1564.69 62.5L1564.69 62.5' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1564.69 62.5L1538.13 195.43' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1538.13 195.43L1538.13 195.43' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1538.13 195.43L1445.81 47.94' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1548.65 652.55L1548.65 652.55' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1548.65 652.55L1418.71 528.71' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1548.65 652.55L1263.26 536.89' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1548.65 652.55L1610.26 338' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3cpath d='M1548.65 652.55L1387.73 358.27' stroke='hsla(217.79999999999995%2c 82.2%25%2c 75.5%25%2c 0.3)' stroke-width='1.5'%3e%3c/path%3e%3ccircle r='25' cx='-46.7' cy='491.82' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='534.59' cy='514.6' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='533.94' cy='711.68' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='645.73' cy='534.42' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='788.95' cy='391.9' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='837.61' cy='513.63' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1289.03' cy='78.9' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1262.13' cy='363.91' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1562.62' cy='-92.08' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1610.26' cy='338' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='25' cx='1554.67' cy='552.94' fill='url(%26quot%3b%23SvgjsRadialGradient1017%26quot%3b)'%3e%3c/circle%3e%3ccircle r='5' cx='-45.38' cy='681.24' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='71.52' cy='691.24' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='196.39' cy='494.41' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='262.02' cy='671.1' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='384.39' cy='515.97' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='345.15' cy='687.35' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='648.01' cy='381.01' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='686.52' cy='680.11' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='810.27' cy='646.12' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='974.71' cy='375.06' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='951.55' cy='512.28' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='992.68' cy='657.31' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1091.29' cy='209.27' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1151.95' cy='378.82' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1095.97' cy='561.41' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1141.85' cy='659.67' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1263.26' cy='536.89' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1435.46' cy='-62.77' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1445.81' cy='47.94' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1408' cy='233.99' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1387.73' cy='358.27' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1418.71' cy='528.71' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1424.27' cy='687.95' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1564.69' cy='62.5' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1538.13' cy='195.43' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3ccircle r='5' cx='1548.65' cy='652.55' fill='rgba(226%2c 236%2c 252%2c 0.65)'%3e%3c/circle%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1016'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cradialGradient id='SvgjsRadialGradient1017'%3e%3cstop stop-color='white' offset='0.1'%3e%3c/stop%3e%3cstop stop-color='rgba(60%2c 125%2c 236%2c 0.3)' offset='0.2'%3e%3c/stop%3e%3cstop stop-color='rgba(60%2c 125%2c 236%2c 0)' offset='1'%3e%3c/stop%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e");
	margin-top: 125px;
	padding-top: 100px;
	padding-bottom: 25px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.disabled-footer-back {
	background: var(--footer) !important;
}

.mode-switcher:after{
	content: var(--icon);
	font-size: 130%;
}

.card{
	background: transparent;
	border: none;
	border-radius: 0;
}

.karta{
	border-radius: 5px;
	background: var(--cardbacks);
	color: var(--fifth);
	position: relative;
}
.offset{
	margin: 1rem;
}

.a-team-colored-line{
	background: var(--bcolor);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 35px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.a-team-colored-line-left{
	background: var(--bcolor);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: calc(100% - 35px);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.a-team-colored-line-bottom{
	background: var(--bcolor);
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	top: calc(100% - 35px);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.social-circle{
	background: var(--primary);
	padding: 12px;
	margin: 2px;
	border-radius: 25px;
}

.social-circle-text{
	text-align: left;
	font-size: 130%;
	font-weight: bold;
	transform: translateY(15%);
}

.back-primary{
	background: var(--primary);
}
.back-karta{
	background: var(--primary);
	padding: 12px;
	border-radius: 5px;
	position: relative;
}
.embed-karta{
	--width: 5px;

	border-bottom-style: solid;
	border-bottom-width: var(--width);
	border-bottom-color: var(--color) !important;
}
.embed-karta-top{
	--width: 5px;

	border-top-style: solid;
	border-top-width: var(--width);
	border-top-color: var(--color) !important;
}
.embed-karta-right{
	--width: 5px;

	border-right-style: solid;
	border-right-width: var(--width);
	border-right-color: var(--color) !important;
}
.embed-karta-left{
	--width: 5px;

	border-left-style: solid;
	border-left-width: var(--width);
	border-left-color: var(--color) !important;
}
.bordered-karta-orange{
	border: 2px dashed;
	border-color: var(--secondary);
	padding: 12px;
	border-radius: 12px;
	position: relative;
}
.bordered-input-orange{
	border: 1px solid !important;
	border-color: var(--secondary) !important;
}

.alert {
	border: 2px;
	border-style: var(--style);
	border-color: var(--border);
	padding: 12px;
	border-radius: 12px;
	position: relative;
	background-color: var(--back);
}

.spacer{
	padding-bottom: 50px;
}
.spacer-md{
	padding-bottom: 100px;
}
.spacer-lg{
	padding-bottom: 150px;
}
.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}

.t-capital{
	text-transform: capitalize;
}

.y-25{
	transform: translateY(-25%);
}
.y-20{
	transform: translateY(-20%);
}
.y-23{
	transform: translateY(-23%);
}

.x-20{
	transform: translateX(20%);
}
.x-23{
	transform: translateX(23%);
}
.x-25{
	transform: translateX(25%);
}

.container-header{
	position: absolute;
	top: 35vh;
	left: 0;
	right: 0;
}

.new-thing{
	display: inline-block;
	transform: rotateZ(30deg) translateX(-20px);
}

.text-sm{
	font-size: 13px;
}
.text-md{
	font-size: 17px;
}
.text-lg{
	font-size: 19px;
}
.text-xl{
	font-size: 25px;
}
.text-xml{
	font-size: 32px;
}
.text-xxl{
	font-size: 45px;
}
.text-xxxl{
	font-size: 55px;
}
.text-orange{
	color: var(--secondary);
}
.text-nocolor{
	color: var(--fifth);
}

.bublifuk{
	background: var(--back);
	border-radius: 10px;
	padding: 4px 6px;
	color: var(--fifth);
}

.bublifuk-2{
	border-radius: 10px;
	padding: 4px 6px;
	color: var(--fifth);
}
.table-center{
	vertical-align: middle;
}
.no-wrap{
	white-space: nowrap; 
}
.no-br br {
	display: none !important;
}
.wrap{
	white-space: wrap; 
}
.break-word{
	word-wrap: break-word;
	word-break: break-all;
}

textarea, input, .input-group-text, select{
	background-color: var(--inputsback) !important;
	color: var(--fifth) !important;
	border: none !important;
	box-shadow: none !important;
}

input[type="checkbox"]:checked, input[type="radio"]:checked{
	background-color: var(--inputsback-active) !important;
}

input[type="range"]::-webkit-slider-thumb, input[type="range"]::-moz-range-thumb, input[type="range"]::-ms-thumb{
	color: var(--inputsback-active) !important;
}

input[type="range"]::-webkit-slider-runnable-track, input[type="range"]::-moz-range-track, input[type="range"]::-ms-track{
	color: var(--inputsback) !important;
	border: none !important;
	box-shadow: none !important;
}

.force-parent-lh {
	line-height: inherit !important;
}

.sticky-top-2{
	position: sticky !important;
	top: 0;
	z-index: 99;
}
.sticky-top-offset{
	position: sticky !important;
	top: 100px !important;
}

.absolute-bottom-right{
	position: absolute;
	bottom: 0;
	right: 0;
}
.absolute-bottom-right-5{
	position: absolute;
	bottom: 5px;
	right: 5px;
}
.absolute-bottom-right-10{
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.absolute-bottom-left-10{
	position: absolute;
	bottom: 10px;
	left: 10px;
}
.absolute-top-right-10{
	position: absolute;
	top: 10px;
	right: 10px;
}
.absolute-top-left-10{
	position: absolute;
	top: 10px;
	left: 10px;
}
.absolute-top-right-5{
	position: absolute;
	top: 5px;
	right: 5px;
}
.absolute-top-left-5{
	position: absolute;
	top: 5px;
	left: 5px;
}

.absolute-top-right--5{
	position: absolute;
	top: -5px;
	right: -5px;
}

.fixed-bottom-right{
	position: fixed;
	bottom: 0;
	right: 0;
}
.fixed-bottom-right-10{
	position: fixed;
	bottom: 10px;
	right: 10px;
}
.fixed-bottom-left-10{
	position: fixed;
	bottom: 10px;
	left: 10px;
}
.fixed-top-right-10{
	position: fixed;
	top: 10px;
	right: 10px;
}
.fixed-top-left-10{
	position: fixed;
	top: 10px;
	left: 10px;
}

/**
  * BUTTONS
  */
.btn-primary{
	background: var(--btn1back);
	border: none;
	color: #fff !important;
	background-size: 400% 100%;
	transition: 0.7s;
	background-position: left center;
}
.btn-primary:hover{
	border: none;
	box-shadow: none !important;
	background-position: right center;
}
.btn-primary:focus{
	border: none;
	box-shadow: none !important;
}

.btn-secondary{
	background: transparent;
	/*border: var(--btn2border);*/
	border: none;
	color: var(--btn2color) !important;
}
.btn-secondary:hover{
	background: transparent;
	/*border: var(--btn2border-hover);*/
	border: none;
	box-shadow: none !important;
	color: var(--btn2color-hover) !important;
}
.btn-secondary:focus{
	background: transparent;
	/*border: var(--btn2border-focus);*/
	border: none;
	box-shadow: none !important;
	color: var(--btn2color-focus)!important;
}

.btn-third{
	--bs: solid;
	background: transparent;
	border: var(--btn2border);
	border-style: var(--bs);
	color: var(--btn2color) !important;
}
.btn-third:hover{
	--bs: solid;
	background: transparent;
	border: var(--btn2border-hover);
	border-style: var(--bs);
	box-shadow: none !important;
	color: var(--btn2color-hover) !important;
}
.btn-third:focus{
	--bs: solid;
	background: transparent;
	border: var(--btn2border-focus);
	border-style: var(--bs);
	box-shadow: none !important;
	color: var(--btn2color-focus)!important;
}

.btn-green{
	background: var(--btn-success-back);
	border: none;
	color: #fff !important;
	background-size: 400% 100%;
	transition: 0.7s;
	background-position: left center;
}
.btn-green:hover{
	border: none;
	box-shadow: none !important;
	background-position: right center;
}
.btn-green:focus{
	border: none;
	box-shadow: none !important;
}

.btn-check:active+.btn-outline-success, .btn-check:checked+.btn-outline-success, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show, .btn-outline-success:active {
    color: #fff;
    background-color: #17870Bc5;
    border-color: #17870Bc5;
}
.btn-outline-success {
    color: #17870Bc5;
    border-color: #17870Bc5;
}
.btn-outline-success:focus{
	border: none !important;
	box-shadow: none !important;
}
.btn-check:active+.btn-outline-danger, .btn-check:checked+.btn-outline-danger, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show, .btn-outline-danger:active {
    color: #fff;
    background-color: #910C0Cc5;
    border-color: #910C0Cc5;
}
.btn-outline-danger {
    color: #910C0Cc5;
    border-color: #910C0Cc5;
}
.btn-outline-danger:focus{
	border: none !important;
	box-shadow: none !important;
}

.btn-red{
	background: var(--btn-danger-back);
	border: none;
	color: #fff !important;
	background-size: 400% 100%;
	transition: 0.7s;
	background-position: left center;
}
.btn-red:hover{
	border: none;
	box-shadow: none !important;
	background-position: right center;
}
.btn-red:focus{
	border: none;
	box-shadow: none !important;
}

.btn-disabled{
	background: transparent;
	border: none;
	color: var(--btn2color) !important;
	opacity: 0.7 !important;
	cursor: default;
}
.btn-disabled:hover{
	background: transparent;
	border: none;
	color: var(--btn2color) !important;
	opacity: 0.7 !important;
}
.btn-disabled:focus{
	background: transparent;
	border: none;
	color: var(--btn2color) !important;
	opacity: 0.7 !important;
}

.btn{
	color: var(--fifth);
	border-radius: 10px !important;
}

.ajs-message{
	background: var(--cardbacks) !important;
	color: var(--secondary) !important;
}

.success-check{
	color: #1db10fc5 !important;
}
.error-check{
	color: #b10f0fc5 !important;
}
.loading-check{
	color: #b1a60fc5 !important;
}
.gray-check{
	color: #383838c5 !important;
}
.check-lg{
	font-size: 180%;
}

.add-between-row{
	margin-top: 7px;
	margin-bottom: 7px;
	padding-top: 6px;
	padding-bottom: 6px;
	width: 100%;
	cursor: pointer;
	position: relative;
	opacity: 0;
	display: block;
}
.add-between-row::before{
	opacity: 0;
	display: block;
	content: "+";
	background-color: #1db10fc5;
	width: 20px;
	height: 20px;
	position: absolute;
	left: -7px;
	top: -2px;
	font-size: 1.1vw;
	padding: 0;
	margin: 0;
	line-height: 1.1vw;
	font-weight: bold;
	text-align: center;
}
.add-between-row>div{
	width: 100%;
	opacity: 0;
	display: block;
	border: 2px solid #1db10fc5;
}
.add-between-row:hover{
	opacity: 1;
}
.add-between-row:hover::before{
	opacity: 1;
}
.add-between-row:hover>div{
	opacity: 1;
}



/****** Style Star Rating Widget *****/

.rating { 
	border: none;
	float: left;
}

.rating > input { 
	display: none; 
} 
.rating > label:before { 
	margin: 5px;
	font-size: 1.25em;
	font-family: FontAwesome;
	display: inline-block;
	content: "\f005";
}

.rating > .half:before { 
	content: "\f089";
	position: absolute;
}

.rating > label { 
	color: #ddd; 
	float: right; 
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: var(--secondary);  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #6c757d;  } 

  /* LOADING BAR */
.dotsLoader {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	color: var(--secondary);
	box-shadow: 33.4px 0 0 12.3px, 66.8px 0 0 5.3px, 100.19999999999999px 0 0 0;
	transform: translateX(-66.8px);
	animation: dots-ijr34dhg 0.6s infinite alternate linear;
}

@keyframes dots-ijr34dhg {
	50% {
		box-shadow: 33.4px 0 0 5.3px, 66.8px 0 0 12.3px, 100.19999999999999px 0 0 5.3px;
	}

	100% {
		box-shadow: 33.4px 0 0 0, 66.8px 0 0 5.3px, 100.19999999999999px 0 0 12.3px;
	}
}


.notifer{
	position: relative !important;
}
.notifer-card{
	overflow: scroll;
	height: 350px;
}
.notifer-buble{
	position: absolute !important;
	top: -18px !important;
	right: -13px !important;
	border-radius: 100% !important;
	background: #b10f0fc5 !important;
	color: white !important;
	padding: 0px 7px 0px 7px;
}

.after-hidden::after{
	display: none !important;
}

.bordered-row{
	border-left: 5px solid;
	border-left-color: var(--back);
	font-weight: bold;
	background: linear-gradient(45deg, var(--back1), var(--back2));
}

.as-button{
	cursor: pointer;
}

.code{
	background: var(--inputsback);
	color: inherit;
	padding: 3px;
	border-radius: 2px;
}
/*.code::before{
	content: "> ";
}*/


.tooltip1 {
	position: relative;
	cursor: pointer;
}
.tooltiptext1 {
	visibility: hidden;
	width: 250px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
	
	position: absolute;
	z-index: 1;
	bottom: 150%;
	left: 50%;
	margin-left: -125px;
}

.tooltip1:hover .tooltiptext1 {
  	visibility: visible;
}

.circle{
	display: inline-block;
	margin-right: 15px;
	transform: translateY(28%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--color);
	box-shadow: attr(color) 0px 0px 25px;
}
.circle-sm{
	display: inline-block;
	margin-right: 15px;
	transform: translateY(28%);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--color);
}

.working-circle{
	background: rgba(0, 200, 10, .8);
	box-shadow: rgba(0, 200, 10, .8) 0px 0px 25px;
}
.error-circle{
	background: rgba(200, 10, 0, .8);
	box-shadow: rgba(200, 10, 0, .8) 0px 0px 25px;
}

.dialy-ratio{
	display: inline-block;
	width: calc(1.111% - 4px);
	margin-right: 4px;
	height: 25px;
	border-radius: 3px;
}

.disk{
	background:rgba(236, 98, 0, 0.2);
	height: 10px;
}
.disk-used {
	height: 100%;
	width: var(--width);
	background: var(--secondary);
}

/*
ALERTS
*/

.swal2-popup{
	background: var(--primary) !important;
	color: var(--fifth) !important;
}