
/* ---------- General ---------- */


@font-face {
	font-family: kf-icon-font-24;
	src:
		url("./fonts/kf-icon-font-24.woff2") format("woff2"), 
		url("./fonts/kf-icon-font-24.ttf") format("truetype"); 
	font-display: block;
}

.icon24 {
  font-family: kf-icon-font-24;
  font-size: 24px;
}


body {
	font-family: "GenosGFG";
	background-color: rgb(245, 247, 249);
}

p {
	line-height: 125%;
}

h1 {
	color: rgb(0, 45, 103);
	font-size: 38px;
}

h2 {
	color: rgba(0, 0, 0, 0.86);
	font-size: 22px;
	line-height: 32px;
	margin: 48px 0px 0px 0px;
}

.container {
	display: flex;
	width: 100%;
}

.container.center {
	align-items: center;
	justify-content: center;
}

.filler {
	flex-basis: 320px;
	flex-shrink: 1;
}

.content {
	padding: 40px;
	min-width: 480px;
	max-width: 850px;
}

.content-block {
	background-color: #ffffff;
	border-radius: 22px;
	padding: 24px;
}

.bluelink {
	color: rgb(0, 102, 179);
	text-decoration-color: rgb(0, 102, 179);
	text-decoration-line: none;
	text-decoration-style: solid;
	text-decoration-thickness: auto;
	display: flex;
	gap: 100px;
}

.bluelink > span:nth-child(1) {
	padding-top: 4px;
}

/* ---------- Buttons ---------- */

.button0 {

	background-color: #ffffff;
	
	border-color: rgb(0, 102, 179);
	border-radius: 22px;
	border-style: solid;
	border-width: 2px;
	
	color: rgb(0, 102, 179);
	cursor: pointer;

	font-size: 13px;
	font-weight: 700;

	height: 44px;
	min-width: 150px;

	margin: 4px 0px 4px 8px;
	padding: 0px 16px 0px 16px;	
}

.button0:hover {
	background-color: #f2f7fb;
}


.button1 {
	background-color: rgb(0, 102, 179);
	
	border-color: rgb(0, 102, 179);
	border-radius: 22px;
	border-style: solid;
	border-width: 0px;
	
	color: rgb(255, 255, 255);
	cursor: pointer;

	font-size: 13px;
	font-weight: 700;

	height: 44px;
	min-width: 150px;
	
	margin: 4px 0px 4px 8px;
	padding: 0px 16px 0px 16px;	
}

.button1:disabled, .button1:hover:disabled {
	background-color: #c0c0c0;
}

.button1:hover {
	background-color: #005ca1;
}


.button-right {
	font-family: kf-icon-font-24;
	font-size: 24px;
	font-weight: 400;

	background-color: rgb(0, 102, 179);
	
	border-color: rgb(0, 102, 179);
	border-radius: 22px;
	border-style: solid;
	border-width: 0px;
	
	color: rgb(255, 255, 255);
	cursor: pointer;

	height: 44px;
	width: 44px;
	
	margin: 4px 0px 4px 8px;
	padding: 0px;	
}

.button-right:hover {
	background-color: #005ca1;
}

.button-right-container span {
	font-family: "GenosGFG";
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	color: rgb(0, 102, 179);
}

.button-right-container button {
	margin-left: 16px;
}

/* ---------- Container ---------- */

fieldset {
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,.2);
	margin-bottom: 10px;
}

.buttons {
	padding-top: 12px;
	padding-bottom: 12px;
}

#status {
	min-height: 100px;
}

/* ---------- Input fields ---------- */

.static-element {
	padding: 16px 0px; 
}

.text-input-element, .select-input-element, .date-input-element {
	background-color: #ffffff;
	border: 1px solid rgba(0,0,0,.86);
	border-radius: 4px;

	padding: 16px 12px 0px 12px; 
	position: relative;
	width: 600px;

	margin-bottom: 12px;
}

.text-input-element input, .text-input-element textarea, .select-input-element select, .date-input-element input {
	background-color: rgba(0, 0, 0, 0);
	caret-color: rgb(0, 102, 179);
	border: none;
	outline: none;

	font-family: "GenosGFG";
	font-size: 16px;
	padding: 18px 12px 8px 0px;
	width: 100%;
}

.text-input-element label, .select-input-element label, .date-input-element label {
	color: rgba(0, 0, 0, 0.62);
	left: 12px;
	position: absolute;
	top: 30px;
	transform: matrix3d(0.8125, 0, 0, 0, 0, 0.8125, 0, 0, 0, 0.21, 1, -0.01, 0, -20.9998, 0.001, 0.99999);
	transform-origin: 0px 0px;
	transition-duration: 0.4s, 0.4s, 0.4s;
	transition-property: transform, color, width;
	transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1), cubic-bezier(0.25, 0.8, 0.25, 1), cubic-bezier(0.25, 0.8, 0.25, 1);
}

.text-input-element.display-empty label, .date-input-element.display-empty label {
	top: 18px;
	color: rgba(0, 0, 0, 1);
	transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.01, 0, 0, 0, 1);
}


.text-input-element.display-focus,.date-input-element.display-focus {
	border-bottom-width: 2px;
	border-color: rgb(0, 102, 179);
	transition: border-color 300ms cubic-bezier(0.55, 0, 0.55, 0.2);
}


.text-input-element.display-disabled, .text-input-element.display-disabled:hover,
.date-input-element.display-disabled, .date-input-element.display-disabled:hover {
	background-color: #f8f8f8;
}

.text-input-element.display-disabled label,
.date-input-element.display-disabled label {
	color: rgba(0, 0, 0, 0.3);
}

.text-input-element:hover, .date-input-element:hover {
	background-color: #f2f7fb;
}

.text-input-element.display-invalid,
.date-input-element.display-invalid,
.select-input-element.display-invalid {
	background-color: #fdeded;
	border-color: #e00000;
}

.text-input-element textarea {
	resize: vertical;
}

.select-input-element select {
	width: 100%;
	color: #000000db;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
	appearance: none;
}

.checkbox-input-element {
	padding: 12px 0 12px 0;
	margin-bottom: 12px;
	display: grid;
	grid-template-columns: 36px auto;
}

.checkbox-input-element input {
	margin-right: 8px;
	height: 20px;
	width: 20px;
}

.checkbox-input-element label {
	padding-top: 4px;
}


.radio-input-element {
	padding: 20px 0 20px 0;
	margin-bottom: 12px;
}

.radio-input-element.multi-line {
	padding: 8px 0 8px 0;
}

.radio-input-element input {
	appearance: none;
	height: 1.5em;
	width: 1.5em;
	position: relative;
	top: 0.25em;

	border-radius: 50%;
	border: 2px solid #000000;

	margin: 0px 8px 0px 12px;
}

.radio-input-element input:checked {
	border: 5px solid #0066b3;
}

.radio-input-element.display-empty input {
	border-color:rgba(0,0,0,.25);
}

.radio-input-element.display-invalid input {
	border: 2px solid #e00000;
	background-color: #fdeded;
}

.radio-input-element.multi-line label {
	 display:block;
}

.checkbox-input-element.display-invalid {
	border: 2px solid #e00000;
	background-color: #fdeded;
}

.date-input-element.display-empty::before {
	 content: "";
	 position: absolute;
	 background-color: #f7f7f4;
	 height: 16px;
	 top: 38px;
	 left: 12px;
	 width: 100px;
}

.date-input-element.display-empty.display-invalid::before {
	 content: "";
	 position: absolute;
	 background-color: #fdeded;
	 height: 16px;
	 top: 38px;
	 left: 12px;
	 width: 100px;
}

.date-input-element.display-empty:hover::before {
	 content: "";
	 position: absolute;
	 background-color: #f2f7fb;
	 height: 16px;
	 top: 38px;
	 left: 12px;
	 width: 100px;
}

.other-input-element {
	padding-top: 12px;
	padding-bottom: 12px;
}

.other-input-element input:invalid {
	outline: 2px solid #e00000;
	border-radius: 2px;
}


/* ---------- Table styles ---------- */

table {
	border-collapse: collapse;
}

table, th, td {
  border: 1px solid #2382c8;
}

th, td {
	text-align: left;
	padding: 0px 5px;
}

/* ---------- Others ---------- */

.important {
	background-color: #ffe0e0;
	color: #800000;
	border: 1px solid #ff0000;
	border-radius: 4px;
	padding: 0px 8px;
}
