@charset "utf-8";

:root {
	--color1: rgba(40,40,40,1);
	--color01: rgba(40,40,40,0.1);	
	--color025: rgba(40,40,40,0.25);
	--color05: rgba(40,40,40,0.5);
	--arrowColor: #FFFFFF;
}

a {
	color: var(--color1);
}

.noEdge {
	border: 0;
	padding: 0;
	margin: 0;
}

#lvWwrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	font-family: 'Roboto Mono', monospace;
	color: var(--color1);
	z-index: 9;
	display: flex;
	flex-direction: column;
	background-color: white;
}

.lvRow {
	height: 25px; 
}

.lvRowExtra {
	height: 45px;
}

#lvInfo {
	position: fixed;
	transform: translate(-50%, calc(-100% - 12px));
	background-color: var(--color1);
	z-index: 20;
	pointer-events: none;
	display: none;
	padding: 7px 15px;
	border-radius: 5px;
	width: 140px;
}	

sup {
    line-height: 0;

    /* The following rules (or similar) likely come from browser 
     * style and are not needed
     */
    font-size: 0.83em;
    vertical-align: super;
}

#lvInfoText {
	line-height: 1.6;
	color: rgba(255,255,255,0.9);
	font-size: 10px;
}

#lvInfoText div{
	display: block;
	margin-right: 5px;
}

#lvInfoArrow {
	position: absolute;
	bottom: 1px;
	left: 50%;
	pointer-events: none;
	width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--color1);
	transform: translate(-50%, 100%); 
}	

#lvPics {
	width: 100%;
	position: relative;
	left: 0%;
}

#lvPicImg {
	width: 100%;
	pointer-events: none;
	display: block;
}

#lvPicStreck {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

#lvPicStreck > *{
	cursor: pointer;
}

#lvList {
	width: 100%;
	height: 50%;
	flex-shrink: 1;
	overflow-y: auto;
}	
		
table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	table-layout: auto;
}	

th, td {
	padding: 6px;
	text-align: left;
	vertical-align: text-top;
	border-bottom: 1px solid var(--color05);
}
th {
	background-color: var(--color025);
	cursor: default;
	position: sticky;
	top: 0;
}

tr:nth-child(even) {
	background-color: var(--color01);
}

tr {
	outline-offset: -2px;
}

#cellMask {
	width: 100%;
	background-color: white;
}

.extraCell {
	width: 0px;	
	font-size: 10px;
	white-space: nowrap;
	display: inline-block;
	padding: 20px 0 0 0;
}

#lvPicCon {
	position: relative;
	width: 100%;
	overflow:hidden;
	flex-shrink: 0;
}

.lvCont {
	position: absolute;
	height: calc(100% - 33px);
	width: 40px;
	top: 0;
	z-index: 10;
	cursor: pointer;
	pointer-events: auto;
}

#lvBack {
	left: 0px;
}

#lvForward {
	right: 0px;
}

.arrow {
	position: absolute;
	width: 35px;
	left: 0px;
	top: 50%;
	fill: none;
	stroke: var(--arrowColor);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

#forwardArrow {
	transform: translateY(-50%) rotateY(180deg);
	stroke-width: 3;
}

#backArrow {
	transform: translateY(-50%);
	stroke-width: 3;
}

#lvContWrap {
	width: 100%;
	display: none;
}

.mobileVis {
	display: table-cell;
}

@media only screen and (max-width: 600px) {
	table {
	font-size: 10px;
	}
	
.extraCell {
	font-size: 8px;
	padding: 14px 0 0 0;
}		
	
.mobileVis {
	display: none;
}	
	
th, td {
	padding: 3px 3px;
	letter-spacing: -1px;
}
	
.lvRow {
	height: 20px; 
}

.lvRowExtra {
	height: 35px;
}
	
}