/* global standards */
:root {
	--border-color-50: rgb(50, 50, 50);
	--border-color-60: rgb(60, 60, 60);
	
	/* archive picker row specs */
	--row-h: 37.5px;
	--visible-rows: 7;
	/* Change to 9 for a taller picker, javascript will need  */
}

@media (min-width: 1025px) {
  :root {
	--visible-rows: 9; /* Smaller for tablets/mobile */
  }
}


body,
html {
	width: 100%;
	height: 100%;
	background-color: #161616;
	background-color: rgb(16 16 16);
	font-family: Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 0;
	border: none;
	overflow: hidden;
	display:flex;
	justify-content:center;
}

/* html {
  font-size: 75%;
  font-size: 100%;
} */

* {
	box-sizing: border-box;
}

.animate__animated.animate__fadeInDown {
	--animate-duration: 0.3s;
}

.hide {
	display: none !important;
}

.landscape-error {
	display: none;
}

@media screen 
  and (orientation: landscape) 
  and (max-device-width: 1024px) 
  and (max-height: 500px)        
  and (pointer: coarse) {
	
	.landscape-error {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 70vh;
		/* background: #000; */
		color: #fff;
		z-index: 10000;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 1.5rem;
	}
	
	.landscape-error .morphers div {
		display:inline;
	}

	/* 3. Hide all other page content to force interaction */
	body > :not(.landscape-error) {
		display: none;
	}
}


.invis {
	opacity: 0 !important;
	color: transparent !important;
}

.hand,
.button {
	cursor: pointer;
}

.ph-light,
.ph-thin {
	vertical-align: middle;
}

mark {
	background-color: transparent;
}

mark.add {
	color: rgb(0, 194, 255);
}

mark.remove {
	color: rgb(255, 110, 204);
}

mark.change {
	color: rgb(255, 198, 66);
}

.divbot {
	border-bottom: 1px solid var(--border-color-50);
}

.divtop {
	border-top: 1px solid var(--border-color-50);
}

.divleft {
	border-left: 1px solid var(--border-color-50);
}

.divrite {
	border-right: 1px solid var(--border-color-50);
}

.report {
	position: absolute;
	top:10px;
	left:10px;
	height:40px;
	width:200px;
	z-index:9000;
	background-color:yellow;
	color:rgb(181, 60, 3);
	display: flex;
	align-items: center;
	justify-content:center;
	font-size:1.3em;
}

.btn.round {
	border-radius: 100%;
	border: 1px solid var(--border-color-60);
	background-color: rgb(255 255 255 / 5%);
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: 300;
	color: rgb(255 255 255 / 78%);
	transition: transform 0.2s, border 0.2s;
	z-index: 3000;
}

.btn.round.question {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	font-weight: 100;
}

.btn.round.calendar {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
}

.btn.round.close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
}

.btn.round.close img {
	width: 50%;
	height: 50%;
	opacity: 0.8;
}

.btn.round:hover {
	transform: scale(1.15);
	border: 1px solid rgb(70 70 70);
}