							/* NEW COLORS/FILL (29-MAR-24) */		

* {
	box-sizing: border-box;
}


body, select {
	font-family: system-ui, Helvetica, Arial, sans-serif; /*'Kosugi', 'Menlo'*/
	font-size: 2rem;
	line-height: 2.5rem;
}

.opt-boxes {
	margin-left: 20px;
	border-left: 2px solid blue;
	width: 200px;
	height: 65px;
	display: flex;
}


select {
	width: 75px;			/* TRY "VAR"/"HAS"... FOR FITTING TO WIDTH OF SELETED OPTION */
	height: 65px;
	padding: 10px;
	margin: 0px;
	position: relative;
	background-color: white;
							/* TRBL */
	border-style: solid solid solid none;
	border-color: gray;
	border-radius: none;
}

.idx {
	font-size: 0.75rem;
	line-height: 0.75rem;
	text-align: center;
}

label {
	display: block;
	margin-bottom: 10px;
}

.displayItem {
	font-size: 2rem;
	color: #bbb;
	padding-left: 25px;
	padding-top: 50px;
	border: 0px dashed red;
}

.small {
	font-size: .9rem;
}

.german {
	font-size: .9rem;
	padding-top: 0px;
}

.footnote {
	margin: 60px 0 0 10px;
	font-size: 12px;
	line-height: 19px;
	color: rgba(100 100 255 / 1);
}

.bold {
	/* font-weight: 800; */
}

a {
	color: blue;
	text-decoration: none;
}
a:hover {
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}

.custombtn {
/* 	width: 134px; */
	width: 150px;
	height: 66px;
	padding: 10px 12px 9px 21px; /* TRBL */
	margin-left: 25px;
	border: 3px solid #bbb;
	font-weight: 500;
	color: #bbb;
	border-radius: 33px;
	background: none;
}

.custombtn:hover {
	border: 3px solid blue;
	background: white;
	color: blue;
	cursor: pointer;
}


img {
	border: 0px solid cyan;
	width: 50px;
	height: 50px;
	padding: 10px; /* TRBL */
	margin-top: 10px;
}

img:hover {
	cursor: pointer;
}

