@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:400,700&display=swap');
@font-face {
	font-family: "caviardreams";
	src: url("caviardreams.ttf");
}
@font-face {
	font-family: "caviardreams";
	src: url("caviardreams_bold.ttf");
	font-weight: bold;
}
.ceve {
	align-items: center;
  	display: flex;
  	justify-content: center;
}
.block {
	padding: 8px;
	width: 350px;
	display:inline-block;
	vertical-align:middle;
	border-radius: 3px;
	background-color: white;
	box-shadow: 6px 6px 2px 2px rgba(20, 20, 20, .2);
}
.logo {
	width: 20%;
}
.caviardreams {
	font-family: caviardreams;
	font-size: 1em;
	font-weight: bold;
}
.textbox {
	border-radius: 0 5px 0 5px;
	width: 67%;
	height: 1.7em;
	border-style: solid;
	border-color: lightgray;
	border-width: 0 2px 2px 0;
	font-size: 1em;
	padding: 3px;
	font-family: system-ui, Arial;
	font-weight: bold;
	margin-right: 3px;
	float: right;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	background-color: #EFEFEF;
	cursor: text;
}
.textbox:hover {
	border-color: #33FF99;
}
.textbox:focus {
	border-color: #6A0888;
	outline: none;
}
.button {
	margin-top: 25px;
	width: 50%;
	padding: 5px;
	border-radius: 0 5px 0 5px;
	border: none;
	background-color: lightgray;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
}
.button:focus {
	outline: none;
}
.button.selected {
	background-color: #00CC6A;
	color: white;
}
.button.selected:hover {
	background-color: #6A0888;
}
.buttonnh {
	margin-top: 25px;
	width: 50%;
	padding: 5px;
	border-radius: 0 5px 0 5px;
	border: none;
	background-color: lightgray;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	cursor: not-allowed;
}
.button:hover {
	box-shadow: 6px 6px 2px 2px rgba(20, 20, 20, .2);
	background-color: #6A0888;
	color: white;
}
.notification {
	border: 1px lightgray solid;
	border-radius: 0 5px 0 5px;
	color: red;
	margin: 25px;
	padding: 5px;
	text-align: center;
}
.date {
  /*background:#EFEFEF url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png)  97% 50% no-repeat ;*/
}
.date::-webkit-inner-spin-button {
  display: none;
}
.date::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.time::-webkit-inner-spin-button,
.time::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin:0;
}

.time::-o-inner-spin-button,
.time::-o-outer-spin-button {
	-o-appearance: none;
	margin:0
}
.time::-webkit-clear-button {
    display: none;
}
.date::-webkit-clear-button {
    display: none;
}
.fieldset {
    border-style: solid;
	border-radius: 0 5px 0 5px;
    border-color: lightgray;
}
    
.select {
	opacity: 100;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.select:hidden {
	opacity: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
table {
	margin-top: 40px;
	margin-bottom: 40px;
	font-family: system-ui, Arial;
	border-collapse: collapse; 
}
tr td, tr th {
	padding-left: 10px;
	padding-right: 10px;
}
tr td {
	height: 25px;
	border-bottom: 2px gray solid;
}
tr:last-child td {
	height: 25px;
	border-bottom: none;
}
tr td:nth-of-type(2) {
	font-family: Roboto mono, Arial, system-ui;
	font-weight: bold;
}
.textbox.lock {
	cursor: not-allowed;
	color: #757575;
}
.textbox.lock:hover {
	border-color: red;
}
.textbox.lock:focus {
	border-color: red;
}
.tooltip-parent {
	position: relative;
	display: inline-block;
}
.tooltip-parent .tooltip-child {
	width: 400px;
	visibility: hidden;
	background-color: #fff;
	color: black;
	font-family: caviardreams;
	text-align: center;
	padding: 5px 5px;
	border-radius: 0 5px 0 5px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	opacity: 0;
	transition: opacity 0.7s;
	border: 2px solid lightgray;
}
.tooltip-parent:hover .tooltip-child {
	visibility: visible;
	opacity: 1;
}
a:-webkit-any-link {
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
}