<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#demo{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 0;
	z-index: 998;
	background: #000;
}
#closeDemo{
	position: absolute;
	left: 10px;
	top: 10px;
	font-size: 4em;
	color: #fff;
	cursor: pointer;
	transform: scale(-1);
	opacity: 0.5;
	z-index: 999;
}
#closeDemo:hover{
	opacity: 1;
}
#sidebar {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 320px;
	max-width: 80%;
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
	transform: translate(100%, 0);
	-webkit-transform: translate(100%, 0);
	-moz-transform: translate(100%, 0);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	display: grid;
	grid-gap: 10px;
	padding: 10px;
	grid-auto-rows: auto min-content min-content;
	place-items: center;
	z-index: 400;
}
#sidebar.active{
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
}
*{
	-webkit-tap-highlight-color: transparent;
}
#knob{
	position: absolute;
	right: 100%;
	top: 0;
	background: white;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
}
.bar{
	width: 60%;
	height:10%;
	background: #000;
	margin: 2px 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
}
.bar:nth-child(1){
	top: 20%;
}
.bar:nth-child(2){
	top: 44%;
}
.bar:nth-child(3){
	top: 70%;
}
#sidebar.active .bar:nth-child(1){
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
}
#sidebar.active .bar:nth-child(2){
	opacity: 0;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
}
#sidebar.active .bar:nth-child(3){
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-moz-transform: translate(-50%, -50%) rotate(-45deg);
}

#uploadBtn{
	font-family: arial;
	font-weight: bolder;
	color: #000;
	cursor: pointer;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#uploadIcon{
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
#uploadBtn:hover{
	text-decoration: underline;
}
#targets{
	height: 100%;
	width: 100%;
	display: grid;
	grid-gap: 10px;
	grid-auto-rows: min-content;
	overflow-y: auto;
}
.target{
	background: rgba(0, 0, 0, 0.2);
	padding: 10px;    
	display: grid;
  grid-auto-flow: column;
  place-items: center;
  grid-auto-columns: min-content auto auto min-content;
	cursor: pointer;
}
.avatar{
	width: 60px;
	height: 60px;
}
.avatar img{
	object-fit: cover;
	height: 100%;
}
.dots {
	width: 30px;
	height: 30px;
	background: url(../images/dots.png) 0 0 / 100% 100%;
	cursor: pointer;
}
.red-bg{
	background: rgba(255, 0, 0, 0.2);
}

.handle{
	width: 30px;
	height: 30px;
	background: url(../images/move.png) 0 0 / 100% 100%;
}

#options{
	position: absolute;
	top: 0;
	left: 0;
	display: grid;
	grid-gap: 5px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 0 5px #000;
	overflow: hidden;
	z-index: 999;
}
.option-item{
	font-weight: 700;
	padding: 5px;
	font-family: arial;
	cursor: pointer;
}
.option-item:hover{
	background: blue;
	color: #fff;
}

#loader{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}
#spinner{
	width: 80px;
	height: 80px;
	border-top: 10px solid #fff;
	border-radius: 50%;
	animation: spin 0.5s infinite;
	-webkit-animation: spin 0.5s infinite;
	-moz-animation: spin 0.5s infinite;
	z-index: 999;
}
@keyframes spin{
	from{
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
	}
	to{
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
	}
}
@-webkit-keyframes spin{
	from{
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
	}
	to{
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
	}
}
@-moz-keyframes spin{
	from{
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
	}
	to{
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
	}
}

#deleteShape{
	position: absolute;
	background: red;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.5em;
	height: 1.5em;
	font-size: 1.25em;
	border-radius: 50%;
	color: #fff;
	font-family: arial;
	font-weight: 700;
	transform: translate(0, calc(-100% - 20px));
	-webkit-transform: translate(0, calc(-100% - 20px));
	-moz-transform: translate(0, calc(-100% - 20px));
	cursor: pointer;
}

#start{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
}
#start img {
	width: 800px;
	height: 500px;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

#bottom{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,50%);
	display: grid;
	grid-gap: 10px;
	place-items: center;
	text-align: center;
}

.fa {
	margin-right: 5px;
}

#useDefault{
	color: #fff;
	text-decoration: underline;
	font-family: arial;
	cursor: pointer;
	font-size: 1.5em;
}
#title{
	position: absolute;
	left: 50%;
	top: 45%;
	font-size: 4em;
	font-weight: bolder;
	text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
	color: #7d1b1b;
	text-align: center;
	font-family: 'Black Ops One';
	transform: translate(-50%, -100%) rotate(-20deg);
	-webkit-transform: translate(-50%, -100%) rotate(-20deg);
	-moz-transform: translate(-50%, -100%) rotate(-20deg);
}

#uploadBg{
	font-size: 1.5em;
	text-transform: none;
	padding: 10px;
}

@media only screen and (max-width: 500px){
	#knob{
		bottom: 100%;
		left: 0;
		right: unset;
		top: unset;
	}
	#sidebar{
		left: 0;
		bottom: 0;
		top: unset;
		right: unset;
		transform: translate(0, 100%);
		-webkit-transform: translate(0, 100%);
		-moz-transform: translate(0, 100%);
		width: 100%;
		max-height: 50%;
		max-width: unset;
	}
}

// TABBER

svg {
  display: none;
}

.tabber {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.tabber label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 1rem;
  font-weight: bolder;
  font-family: arial;
  cursor: pointer;
  will-change: transform;
  transform: translateZ(0px);
  transition: transform 125ms ease-in-out, filter 125ms ease-in-out;
  -webkit-transition: transform 125ms ease-in-out, filter 125ms ease-in-out;
  -moz-transition: transform 125ms ease-in-out, filter 125ms ease-in-out;
  z-index: 11;
}
.tabber label:hover {
  transform: scale(1.15);
}
.tabber input[type=radio] {
  display: none;
}
.tabber input[type=radio].t1 ~ .blob {
  transform-origin: right center;
}
.tabber input[type=radio].t2 ~ .blob {
  transform-origin: left center;
}
.tabber input[type=radio].t1:checked ~ .blob {
  background: cornflowerblue;
  -webkit-animation-name: stretchyRev;
          animation-name: stretchyRev;
}
.tabber input[type=radio].t2:checked ~ .blob {
  background-color: skyblue;
  -webkit-animation-name: stretchy;
          animation-name: stretchy;
}
.tabber .blob {
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: 10;
  border-radius: 4rem;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition: transform 150ms ease, background 150ms ease;
  -webkit-transition: transform 150ms ease, background 150ms ease;
  -moz-transition: transform 150ms ease, background 150ms ease;
  filter: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" version="1.1"&gt;&lt;defs&gt;&lt;filter id="goo"&gt;&lt;feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" /&gt;&lt;feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 19 -9" result="goo" /&gt;&lt;feComposite in="SourceGraphic" in2="goo" operator="atop"/&gt;&lt;/filter&gt;&lt;/defs&gt;&lt;/svg&gt;#goo');
}
.tabber .blob:before, .tabber .blob:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  background-color: inherit;
  height: 100%;
  width: 50%;
  border-radius: 100%;
  transition: transform 150ms ease;
  -webkit-transition: transform 150ms ease;
  -moz-transition: transform 150ms ease;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.tabber .blob:before {
  left: 0;
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.tabber .blob:after {
  right: 0;
}

@-webkit-keyframes stretchy {
  0% {
    transform: translateX(0) scaleX(1);
  }
  50% {
    transform: translateX(0) scaleX(2);
  }
  100% {
    transform: translateX(100%) scaleX(1);
  }
}

@keyframes stretchy {
  0% {
    transform: translateX(0) scaleX(1);
  }
  50% {
    transform: translateX(0) scaleX(2);
  }
  100% {
    transform: translateX(100%) scaleX(1);
  }
}
@-webkit-keyframes stretchyRev {
  0% {
    transform: translateX(100%) scaleX(1);
  }
  50% {
    transform: translateX(0) scaleX(2);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}
@keyframes stretchyRev {
  0% {
    transform: translateX(100%) scaleX(1);
  }
  50% {
    transform: translateX(0) scaleX(2);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}
@-webkit-keyframes pulse {
  0%, 50% {
    transform: scaleX(1);
  }
  25%, 75% {
    transform: scaleX(1.5);
  }
}
@keyframes pulse {
  0%, 50% {
    transform: scaleX(1);
  }
  25%, 75% {
    transform: scaleX(1.5);
  }
}

.active-tabber .blob:before, .active-tabber .blob:after {
	transform: scale(1.15);
	-webkit-animation-name: pulse;
	        animation-name: pulse;
}
#error-msg:empty{
    display: none;
}</pre></body></html>