
/* wl/style.css */
body{margin:0;font-size:16px;overflow:hidden;display:flex;height:100vh;flex-direction:column}.main{flex:1;overflow:auto;padding:0 30px 60px;background-color:var(--theme-filelist-bg)}.header{min-height:30px;padding:10px;border-bottom:1px solid var(--hBCol);z-index:99999;background-color:var(--theme-bg)}.header .left{float:left;padding:10px}.header .right{float:right;margin:5px 0}.header .filename{color:var(--theme-textLight);font-size:24px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.header .details{color:var(--theme-textLighter);display:inline-block;font-size:14px;padding:10px 20px}.actionBtn,a.actionBtn{padding:10px 15px;display:inline-block;border-radius:var(--sBr);background-color:var(--theme-main);color:var(--theme-textOnMain);transition:color 200ms cubic-bezier(.4,0,.2,1),background 200ms cubic-bezier(.4,0,.2,1),box-shadow 400ms cubic-bezier(.4,0,.2,1)}.actionBtn:hover{background:var(--theme-lighter);color:var(--theme-main);text-decoration:none}.actionBtn:active{background-color:rgba(0,0,0,.26)}.breadCrumb{font-size:24px;padding:1px 6px}.breadCrumb:hover{text-decoration:none;background-color:rgba(0,0,0,.06)}.bcSep{color:var(--theme-textLighter);font-size:24px;margin-left:5px;margin-right:5px;display:inline-block}.overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.6);z-index:2;cursor:default}.panel,.panel-contents{border-radius:var(--sBr)}.panel{position:absolute;background-color:var(--theme-bg);width:400px;font-size:14px;box-shadow:0 4px 8px rgba(0,0,0,.32),0 8px 40px rgba(0,0,0,.4);top:50%;left:50%;transform:translate(-50%,-50%);padding:20px}.panel-contents{margin-bottom:20px;border:1px solid var(--hBCol);height:200px;width:100%;overflow-y:auto;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.panel-contents div{margin:10px}.overlay#upload .panel{width:80%}.overlay#upload .panel-contents{height:300px}.acceptBtn{margin-right:10px}.extLabel{display:inline-block;text-align:center;text-transform:uppercase;border-radius:var(--sBr);font-weight:700;background-color:var(--theme-bg-transparent);border:1.5px solid var(--theme-folder);color:var(--theme-textLighter);padding:2px 4px;max-width:50px;white-space:nowrap;overflow:hidden}@media (max-width:480px){.panel{width:80%}}

/* wl/folder.css */
.itemsList{max-width:900px;margin:30px auto;display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));grid-gap:20px;align-items:stretch}.item{background-color:var(--theme-bg);border-radius:var(--sBr);border:1px solid var(--hBCol);display:flex;align-items:center;cursor:pointer}.item .icon{width:48px;height:48px;background-position:center;background-size:50%;background-repeat:no-repeat}.item .filename{overflow:hidden;text-overflow:ellipsis;font-size:14px;white-space:nowrap}.item.file .filename{padding:5px;text-align:center}.item.file{flex-direction:column}.filenameRow,.item,.thumb{width:100%}.thumb{display:block;min-height:130px;border-top-left-radius:var(--sBr);border-top-right-radius:var(--sBr);background-size:cover;background-repeat:no-repeat;background-position:top;text-align:center}.tmbicon{background-size:50%}.extLabel{margin-top:51px;margin-bottom:51px}

.filename,
.filename:hover {
	background-image: url(https://file.hytwatches.com/wl/img/download.png) !important;
  background-size: 30% !important;
  height: 20px;
  background-color: #f2f2f2;
  padding: 10px 10px 10px 30px !important;
  background-repeat: no-repeat;
  background-position: -10px -5px;
}
.filename:hover {
  background-color: #12f511;
}

.itemsList {
	max-width:900px;
	margin: 30px auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	grid-gap: 20px;
	align-items: stretch;
}
.itemsList a {
	text-decoration:none;
}
.item {
	width: 100%;
	background-color: var(--theme-bg);
	border-radius: var(--sBr);
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	transition: box-shadow 200ms cubic-bezier(0.4,0.0,0.2,1);
	display: flex;
	align-items: center;
	cursor: pointer;
}
.item .icon {
	width: 48px;
	height: 48px;
	background-position:center;
	background-size: 50%;
	background-repeat:no-repeat;
}
.item .filename {
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	white-space: nowrap;
	padding: 5px;
}
.item.file {
	flex-direction: column;
}
.filenameRow {
	width: 100%;
}
.thumb {
	display: block;
	width: 100%;
	min-height: 130px;
	border-top-left-radius: var(--sBr);
	border-top-right-radius: var(--sBr);
	background-size: cover;
	background-repeat:no-repeat;
	background-position: center;
}
.tmbicon {
	background-size: 50%;
}

.extLabel {
	margin-top: 51px;
    margin-bottom: 51px;
}


body .cprt{
	display: none !important;
}



















:root {
    --theme-filelist-bg: #a5a5a5;
	--theme-main: #ffffff;
}



body {
	margin: 0;
	font-family: Arial,sans-serif;
	font-size:16px;
	cursor:default;
	background-color: #EEEEEE;
	overflow: hidden;
	display: flex;
	height: 100vh;
	flex-direction: column;
}
a {
	text-decoration:none;
}
.header {
	min-height: 60px;
	background-color: #000000;
	padding:10px;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}
.header::before {
	
    background-image: url(https://www.hytcore.ch/HYT-logo-4c.svg) !important;
    background-size: 50% !important;
    background-repeat: no-repeat;
    background-position: center;
	background-color:#000000;
	
	width: 200px;
	height: 60px;
	content: " ";
	position: absolute;
	background-repeat: no-repeat;
	background-size: 190px;
	left: 10px;
	background-position: 0px 10px;
}
body .cprt {
    display: none !important;
}
.header .left {
	float: left;
    padding: 20px 10px 10px 10px;
    margin-left: 190px;
}
.header .left {
    float: left;
    padding: 10px 10px 10px 10px;
    margin-left: 110px;
    position: relative;
    z-index: 100;
    font-size: 28px;
}
.header .right {
	float:right;
	margin: 5px 0;
}
.breadCrumb {
    font-size: 28px;
    color: #016fb7;
    padding: 1px 6px;
}
.breadCrumb:hover {
	color: #ffffff;
	text-decoration: none;
	background-color: rgba(0,0,0,.06);
}
.bcSep {
	color: #777;
	font-size:24px;
	margin-left:5px;
	margin-right:5px;
	display: inline-block;
}
.header .details {
	color: #777;
	display: inline-block;
	font-size: 14px;
	padding: 0 20px;
}
.main {
	flex: 1;
	overflow:auto;
	padding: 0 30px;
    background-color: #ffffff;
}

.itemsList {
	max-width:900px;
	margin: 30px auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	grid-gap: 20px;
	align-items: stretch;
}
.itemsList a {
	text-decoration:none;
}
.item {
	width: 100%;
	background-color:white;
	border-radius: 2px;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	transition: box-shadow 200ms cubic-bezier(0.4,0.0,0.2,1);
	display: flex;
	align-items: center;
	cursor: pointer;
}
.item .icon {
	width: 48px;
	height: 48px;
	background-position:center;
	background-size: 50%;
	background-repeat:no-repeat;
}
.item .filename {
	flex: 1;
	vertical-align: middle;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 10px;
	color: rgba(0,0,0,.72);
	font-size: 14px;
	white-space: nowrap;
}
.item.file {
	flex-direction: column;
}
.filenameRow {
	display: flex;
	align-items: center;
	width: 100%;
}
.filenameRow:hover .icon {
	background-image: url(../img/download.png) !important;
	background-size: 80% !important;
}
.thumb {
	display: block;
	width: 100%;
	min-height: 130px;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	background-size: cover;
	background-repeat:no-repeat;
	background-position: center;
}
.tmbicon {
	background-size: 50%;
}
.actionBtn {
	padding:10px 15px;
	display: inline-block;
	cursor: hand;
	border-radius: 2px;
	color: #4285f4;
	text-transform: uppercase;
	transition: color 200ms cubic-bezier(0.4,0.0,0.2,1),background 200ms cubic-bezier(0.4,0.0,0.2,1),box-shadow 400ms cubic-bezier(0.4,0.0,0.2,1);
}
.actionBtn:hover {
	background: rgba(0,0,0,.12);
	text-decoration: none;
	color: #4285f4;
}
.actionBtn:active {
	background-color: rgba(0, 0, 0, 0.26);
}

.overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.6);
	z-index: 2;
	cursor: default;
}
.panel {
	position: absolute;
	background-color:white;
	width: 400px;
	font-size:14px;
	border-radius: 2px;
	box-shadow: 0 4px 8px rgba(0,0,0,.32),0 8px 40px rgba(0,0,0,.4);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding:20px;
}
.panel-contents {
	margin-bottom:20px;
	border:1px solid #ebebeb;
	height:200px;
	width: 100%;
	overflow-y:auto;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.panel-contents div {margin:10px;}
.overlay#upload .panel {
	width: 80%;
}
.overlay#upload .panel-contents {
	height: 300px;
}


.acceptBtn {margin-right:10px;}
.cancelBtn, .cancelBtn:hover {
	color: black;
}

.header .right .actionBtn {
    display: none;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	/* IE10/11 */
	.itemsList {
		clear: both;
	}
	.item {
		width: 154px;
		float: left;
		margin: 10px;
	}
}
