
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body {
	height: 100%;
	margin: 0;
	box-sizing: border-box;
	background-color: #020202;
	font-family: 'Inter';
	font-style: normal;
	font-size: 12px;
	color: #d3d3d3;
	user-select: none;
	scrollbar-color: #808080 #202020;
  	scrollbar-width: 20px;
}

header {
	padding: 5px 10px;
	font-size: 20px;
	font-weight: 900;
}

#gohome {
	cursor: pointer;
}

*, *::before, *::after {
	box-sizing: border-box;
}

#cont {
/*	height: 100%;*/
	min-height: calc(100% - 70px);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}
#left-side {
	height: calc(100% - 45px);
	min-width: fit-content;
	padding-left: 2px;
	padding-top: 2px;
	overflow-y: auto;
}
#right-side {
	height: calc(100% - 45px);
	margin-top: 2px;
	margin-left: 20px;
	overflow-y: auto;
}
.group {
	margin: 2px;
	width: 250px;
	padding: 4px 10px;
	background-color: #494949;
	cursor: pointer;
	font-weight: 700;
	border-radius: 2px;
}

.group_mobile {
	margin: 2px;
	width: 100%;
	padding: 4px 10px;
	background-color: #494949;
	cursor: pointer;
	font-weight: 700;
	border-radius: 2px;
}	






.gsel {
	/*border-radius: 4px 4px 0 0;*/
	color: #ffffff;
}
.asel {
	background-color: #292929;
	color: #ffffff;
}

/*.asel::before {
	content: '> ';
}*/

.dtile {
	margin: 0 2px 2px 2px;
	width: 170px;
	height: 190;
	background-color: #181818;
	float: left;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.1s ease-in;
}

.dtile:hover {
	background-color: #303030;
}

.dthumb {
	width: 170px;
	height: 170px;
	background-position: center;
	background-repeat: no-repeat;
}
.dnote {
	height: 14px;
	font-size: 9px;
	text-align: center;
	overflow: hidden;
	padding: 2px 0;
}

.album {
	padding: 2px 0 2px 20px;
	cursor: pointer;
	font-weight: 500;
}

.gc {
	overflow: hidden;
	margin: -2px 2px 2px 2px;
	background-color: #181818;
	border-radius: 0 0 4px 4px;
/*	border-left: 1px solid #494949;
	border-bottom: 1px solid #494949;
	border-right: 1px solid #494949;*/
	transition: height 0.2s ease-in;
}

.ghidden {
	/*display: none;*/
	height: 0;
}

.group:hover, .album:hover {
	color: #ffffff;
}

#content {
	position: absolute;
	width: 100%;
	
}

.content_desktop {
	height: calc(100% - 35px);
}

.content_mobile {
	height: 100%;
}

#viewer {
	/*height: 100%;*/
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#view, #view0, #view1, #view2{
	/*margin: 0 5px 5px 5px;*/
	/*margin-bottom: 5px;*/
	width: 100%;
	text-align: center;
	color: #FFFFFF;
	/*padding: 10px;*/
	background-position: center;
	background-repeat: no-repeat;
	/*background-clip: padding-box;*/
	background-clip: content-box;
	background-size: contain;
	z-index: 1;
	/*transition: background-image 0.2s linear;*/
}
.view_desktop {
	height: calc(100vh - 60px);
}

.view_mobile {
	height: 100%;
}
.imginfo {
	position: absolute;
	top: 0px; /* 20px*/
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 20px;
	/*height: calc(100% - 34px);*/
	/*margin: 0 50px;*/
	z-index: 3;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 100%;
	transition: opacity 0.1s ease-in;	
}

.ititle {
	color: #FFFFFF;
	font-size: 14px;
	margin: 4px;
	height: fit-content;
/*	padding-left: 140px;*/
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.ititle > div:nth-child(1) {
	padding-left: 140px;
}

#iclose {
	width: 20px; height: 20px;
	margin-left: auto;
	background-color: #adadad;
	border-radius: 10px;
	background-image: url(../pics/close.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
	cursor: pointer;
}

td:nth-child(1) {
	width: 230px;
	text-align: center;
	padding: 2px 5px;
	background-color: #303030;
} 

td:nth-child(2) {
	width: 230px;
	text-align: center;
	background-color: #cdcdcd;
	color:#181818
} 

#imgform {
	margin-top: -50px;
	background-color: #494949;
	width: fit-content;
	padding: 10px;
	border-radius: 5px;	
}

#imgmap {
	height: 300px;
	width: 460px;
	background-color: #ffffff;
	margin: 5px auto;
}

#tools {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 100px);
	margin: 0 50px;
	padding: 5px;
	z-index: 3;
	display: flex;
	flex-direction: row;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.1s ease-in;	
}

#tools:hover {
	opacity: 80%;
}

.button {
	margin: 2px 5px;
	width: 50px;
	height: 30px;
	border-radius: 3px;
	background-color: #494949;
	text-align: center;
	cursor: pointer;
}

.hdn {
	display: none;
	opacity: 0;
}

#play {
	background-image: url(../pics/play.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 35%;
}

#pause {
	background-image: url(../pics/pause.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30%;
}

#info {
	margin-left: 50px;
	background-image: url(../pics/info.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 45%;
}

#download {
	background-image: url(../pics/download.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 35%;
}

.arrows {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 10px;
	z-index: 2;
	display: flex;
	flex-direction: row;
}

.arrow {
	opacity: 0;
	transition: opacity 0.1s ease-in;
}

.arrow:hover {
	opacity: 70%;
}

#arrow_prev {
/*	width: 22px;*/
	height: 100%;
	padding: 50px;
	margin: 5px 0 50px 0;
	background-image: url(../pics/arrowleft.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30%;
	cursor: pointer;
}

#arrow_next {
/*	margin-left: auto;*/
	margin: 5px 0 50px auto;
/*	width: 22px;*/
	height: 100%;
	padding: 50px;
	background-image: url(../pics/arrowright.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30%;
	cursor: pointer;
}

#note {
	text-align: center;
	font-size: 14px;
}
.note_mobile {
	position: absolute;
	width: 100%;
	z-index: 10;
	top: calc(100% - 20px);
	margin-bottom: -20px;
	color: #ffffff;
	text-shadow: 1px 1px 2px #000, -1px -1px 2px #020202;
}