/* CSS Document */

@font-face {
	font-family: 'flowtask';
	src: url('../css/fonts/icotask.eot?2b9n0d');
	src: url('../css/fonts/icotask.eot?2b9n0d#iefix') format('embedded-opentype'),  url('../css/fonts/icotask.ttf?2b9n0d') format('truetype'),  url('../css/fonts/icotask.woff?2b9n0d') format('woff'),  url('../css/fonts/icotask.svg?2b9n0d#flowtask') format('svg');
	font-weight: normal;
	font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body,html{
	padding:0;margin:0;
	font-family: "Montserrat";
}
body{
	
	overscroll-behavior:none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
  grid-auto-rows: 1fr;
	padding:10px;
	overscroll-behavior:none;
row-gap:10px;
	column-gap:10px;
	overflow-x:hidden;
}

.grid::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

.grid > *:first-child {
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

/* Just to make the grid visible */

.grid > * {
  background: #eee;
  border: 1px white solid;
	user-select: none;
	cursor: pointer;
	overscroll-behavior:none;
	position: relative;
	color:#202831;
}

.grid > * .symbol{
	display: inline-block;
	position: absolute;
	top:20px;
	left:50%;
	transform: translateX(-50%);
	font-family: "flowtask";
	font-size:60px;
}
.grid > * .title{
	display: inline-block;
	position: absolute;
	bottom:20px;
	left:50%;
	transform: translateX(-50%);
	text-transform: uppercase;
	font-size: 14px;
	white-space: nowrap;
	
}

.plus{
	font-size:40px;
	font-family: "flowtask";
	color:#777;
	position: relative;
	left:50%;
	top:50%;
	display: inline-block;
	transform: translate(-50%,-50%);
}


.rect{
	width:45vw;
	height:45vw;
	background-color:#333;
}

header{
	background-color:#202831;
	padding:10px;
	position: fixed;
	top:0;left:0;right:0;
	height: 35px;
	z-index: 999;
}
header button{
	background-color: transparent;
    border: 0;
    color: #fff;
    font-family: 'flowtask';
    font-size: 30px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 12px;
    line-height: 15px;
    position: absolute;
	outline: 0;
}
header button.right{
	right:0;
	left:auto;
}
header .title{
	position: absolute;
	left:50%;
	transform:translate(-50%,-50%);
	top:50%;
		color:#fff;
}
header .title.left{
	left:20px;transform:translateX(0) translateY(-50%);
}
header .search{
	position: fixed;
	top:55px;
	left:0;
	right:0;
	
	background-color:#222;
	padding:10px 6px;
	box-sizing: border-box;
}
header .search input{
	width:100%;
	box-sizing: border-box;
	padding:3px;
}

.card{
	position:fixed;
	top:0;bottom:0;left:-100vw;
	width:100vw;
	background-color:#fff;
	z-index: 999;
	margin-top:55px;
	overflow-y:auto;
	transition: left .9s ease-in;
	padding-bottom:80px;
}
.card.active,.card.active header{
	left:0;
	/*pointer-events: auto;*/
}
.card header{
	left:100vw;
}

.dialog{
	padding:20px 30px;
	display:none;
	z-index: 99999999;
	background-color:#fff;
	box-shadow: 0 -10px 20px rgba(0,0,0,0.3);
	top:0;
	bottom:0;
	left:0;right:0;
	position: fixed;
}
.selectContent{
	padding:20px 10px 17px;
	display:display;
	z-index: 9999999;
	background-color:#fff;
	box-shadow: 0 -10px 20px rgba(0,0,0,0.3);
	bottom:0;
	left:0;right:0;
	position: fixed;
}
.selectContent.expand{
	height:100px;
}
.selectContent .action button{
	width:100%;
	border:0px;
	background-color:#333;
	padding:15px;
	color:#fff;
}
.selectContent .action{
	display:none;
	padding-top:20px;
}
.selectContent.expand .action{
	display:block;
}


.dialog small{
	    font-size: 12px;
    color: #555;
}
.dialog input, .dialog textarea, .dialog select{
	font-size:14px;
	padding:10px 15px;
	box-sizing: border-box;
	width:100%;
	margin-bottom:15px;
	border:1px solid #ccc;
	border-radius:2px;
	background-color:#fff;
}
.dialog input[type=color]{
	padding:0;border:0px;height:30px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
	border-radius:2px;
}
input[type="color"]::-webkit-color-swatch {
	border: none;
	border-radius:2px;
}
.save{
	width:100%;
	background-color:#24252E;
	padding:10px;
	border:0px;
	border-radius:2px;
	color:#fff;
}


.arrows { white-space: nowrap; margin:0px; padding:0px;}
.arrows li {
    display: inline-block;
    line-height: 18px;
    margin: 0 9px 0 -10px;
    padding: 0 20px 0 14px;
    position: relative;
	text-transform: uppercase;
}
.arrows li::before,
.arrows li::after {
    border-right: 1px solid hsl(0, 0%, 65%);
    content: '';
    display: block;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    transform: skewX(45deg);   
}
.arrows li::after {
    bottom: 0;
    top: auto;
    transform: skewX(-45deg);
}

.arrows li:last-of-type::before, 
.arrows li:last-of-type::after { 
    display: none; 
}

.arrows li a { 
   font: normal 14px;  
   letter-spacing: -1px; 
   text-decoration: none;
}

.arrows li:nth-of-type(1) a { color: hsl(0, 0%, 70%); } 
.arrows li:nth-of-type(2) a { color: hsl(0, 0%, 65%); } 
.arrows li:nth-of-type(3) a { color: hsl(0, 0%, 50%); } 
.arrows li:nth-of-type(4) a { color: hsl(0, 0%, 45%); } 


.time{
	display:block;
	position:absolute;
	right:15px;
	top:16px;
	text-align: right;
	color:#444;
	font-size:22px;
}

.iconControl{
	    list-style: none;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    padding: 0;
    margin: 0px;
    height: 150px;
    border: 1px solid #ccc;
}
.iconControl li{
	display:inline-block;
	padding:4px;
	float:left;
}
.iconControl li label{
	font-family: 'flowtask';
	font-size:30px;
}
.iconControl li input{
	position: fixed;
	left:-20000px;
}
.iconControl li .icon{
        padding: 3px 8px;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 3px;
}
.iconControl li input:checked ~ .icon{
	border: 2px solid #111;
}