@font-face{
	font-family:"Share Tech Mono";
	src:url(../fonts/share-tech-mono.regular.ttf);
}


*{
	font-family:"Share Tech Mono";
	cursor: url(../images/cursors/gray.png), auto;
}

::selection{
	color:white;
	background:#333;
}

::-webkit-scrollbar {
  width: 12px;
  height:12px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: #444;
}

::-webkit-scrollbar-thumb:hover {
  background: #222;
}

body{
	user-select: none;	
	font-weight: bold;
	font-size: 2em;
	background:black;
}

#container{
	width: 800px;
	height: 800px;
	position: fixed;
	left: 50%;
	top:50%;
	margin-left: -400px;
	margin-top:-400px;
	overflow: none;
}

#container .inner{
	position: relative;
}


@keyframes section_animation{
	0%{
		background-size:100px 100px, 100px 100px, 50px 50px, 50px 50px;
	}
	20%{
		background-size:200px 100px, 100px 100px, 50px 50px, 50px 50px;
	}
	40%{
		background-size:200px 200px, 100px 50px, 50px 50px, 50px 50px;
	}
	60%{
		background-size:200px 200px, 50px 100px, 50px 50px, 50px 50px;
	}
	80%{
		background-size:100px 200px, 100px 100px, 50px 50px, 50px 50px;
	}
	100%{
		background-size:100px 100px, 100px 100px, 50px 50px, 50px 50px;
	}
}

section{
	animation: 10s section_animation infinite linear;
	position: absolute;
	left: 0px;
	top:0px;
	width: 800px;
	height: 800px;
	background: #bbb;
	display: none;

	background:
radial-gradient(circle, transparent 20%, #eee 20%, #eee 80%, transparent 80%, transparent),
radial-gradient(circle, transparent 20%, #eee 20%, #eee 80%, transparent 80%, transparent) 50px 50px,
linear-gradient(#ffa259 8px, transparent 8px) 0 -4px,
linear-gradient(90deg, #ffa259 8px, transparent 8px) -4px 0;
background-color: #eee;
background-size:100px 100px, 100px 100px, 50px 50px, 50px 50px;
}

.button{
	padding:10px;
	border-radius:20px;
	background-color: #333;
	box-shadow: 3px 3px 1px white;
	display: inline-block;
	transition: .2s;
	text-transform: uppercase;
	font-size: 2em;
	color:white;
}

.button:hover{
	box-shadow: 6px 6px 1px white;
	transform: scale(1.2);
}

section p{
	text-align: center;
}

section h1{
	margin:0;
	color:white;
	text-align: center;
	text-shadow: 1px 1px black;
}


.label{
	font-size:1em;
	color:#333;
	background: white;
    padding: 7px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

section#options .label{
	font-size: 2em;
}

.button.toggle{
	border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.button.toggle :not(.current){
	display: none;
}

.button.toggle .current{
	display: block;
}

section input{
	border:3px solid transparent;
	font-size:1em;
	padding:4px;
	border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
	width:6em;
}

section input:focus{
	outline: none;
	border-color:#333;
}

section#save #inp_time{
	width:3em;
}

section#view #canvas{
}

#btn_mute{
	background:white;
	border-radius: 100%;
	position: absolute;
	left: 10px;
	top:10px;
}

section#view{
	z-index: 999;
}


.list{
	display: flex;
    background:rgba(0,0,0,0.1);
    padding-top:10px;
    padding-bottom: 10px;
    overflow: auto;
}

.list .item{
	background: #333;
    color: white;
    border-radius: 10px;
    padding: 4px;
    margin: 4px;
    border: 2px solid white;
    transition: .5s;
    text-align: center;
    transition: .5s;
}



.list .item:hover{
	border-color:#333;
	transform: scale(1.1);
}

.list .item img{
	width:128px;
	height:128px;
}


.list .item[data-locked=true]{
	border-color:#bb2323;
}

.list .item .locked{
	position: absolute;
	left: -128px;
	width:128px;
	height:128px;
}

.relative{
	position: relative;
}