*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html{
	background:#223344;
	overflow:hidden;
}

body{
	max-width:1920px;
	margin:0 auto;
	user-select:none;
}

::-webkit-scrollbar{width:9px;}
::-webkit-scrollbar-track{background:#555;}
::-webkit-scrollbar-thumb{background:#007399; border-radius:5px; cursor:pointer;}

.clear{clear:both;}

.cols{
	display:grid;
	grid-template-columns:250px 1fr 450px;
}

.cola{
	height:calc(100vh - 32px);
	overflow-y:scroll;
	padding-top:25px;
	padding-bottom:20vh;
}

.at{
	font-family:montserrat;
	font-size:16px;
	letter-spacing:1px;
	color:#ddd;
	line-height:25px;
	padding:0 9px;
	margin-bottom:14px;
	cursor:pointer;
	position:relative;
}

.aact{background:#007399;}
.at:active{bottom:2px;}

.abr{
	font-family:montserrat;
	font-size:14px;
	letter-spacing:1px;
	color:#ddd;
	line-height:34px;
	padding:0 9px;
	cursor:pointer;
	position:relative;
	border-top:2px dashed #bbb;
	border-bottom:2px dashed #bbb;
	margin-top:20px;
	margin-bottom:20px;
}

.abr:active{bottom:2px;}

.colb{
	height:calc(100vh - 32px);
	overflow-y:scroll;
	padding:0 36px;
	padding-bottom:20vh;
}

.bins{
	margin-top:14px;
}

.bimg{
	display:inline-block;
	height:200px;
  margin:14px;
	border-radius:9px;
	position:relative;
	cursor:pointer;
	border-top:5px dashed transparent;
}

.bact{border-top:5px dashed red;}
.bimg:active{bottom:2px;}

.colc{
	height:calc(100vh - 32px);
	overflow-y:scroll;
	padding-left:25px;
	padding-right:25px;
	padding-bottom:20vh;
}

.cins{
	display:none;
	margin-top:14px;
}

.cimg{
	display:block;
	max-width:100%;
	margin:0 auto;
	border-radius:9px;
	cursor:pointer;
	position:relative;
}

.cimg:active{bottom:2px;}

.ct{
	font-family:montserrat;
	font-size:16px;
	letter-spacing:1px;
	color:#ddd;
	margin-top:9px;
	line-height:25px;
	text-align:center;
}

.inpfile{display:none;}

.spin {
  display:none;
	width: 63px;
  height: 63px;
	position:fixed;
	z-index:5;
	left:50vw; top:50vh;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {to {transform: rotate(360deg);}}


@media only screen and (max-width: 1360px){
	.colc{display:none;}
	.cols{grid-template-columns:250px 1fr;}
}

@media only screen and (max-width: 999px){
	.tohide{display:none;}
	.minwrap{display:block;}
}

