@charset "UTF-8";


* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #000000;
}

li {
	margin-left: 5px;
}

header > a {
	background: linear-gradient(to right, #008000, #ffffff); 
	color: #ffffff;
	font-size: 2rem;
}

main {
    width: 100%;
}

label {
    font-size: 1.5rem;
}

input {
	height: 1.5rem;
	font-size: 1.5rem;
}

select {
    font-size: 1.5rem;
}

dialog {
	width: 375px;
}

textarea {
	tab-size: 4;
}

#wrapper {
	width: 100vw;
}

.center {
	margin: 0 auto;
}

.right {
	margin: 0 0 0 auto;
}

.all-center {
	margin: auto auto;
}

.inline-block {
	display: inline-block;
}

.max-width {
	width: 100%;
}

.none-row {
	display:none;
	flex-direction: row;
}

.none-col {
	display: none;
	flex-direction: column;
}

.flex-row {
	display:flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.list-style-none {
	list-style: none;
}

.justify-content-flex-end {
	justify-content: flex-end;
}

.select {
    border: 1px solid #000000;
    overflow-y: scroll;
}
.select > label {
	height: 2rem;
}

.labelRadio > input[type="radio"] {
	display: none;
}
.labelRadio:has(input[type="radio"]:checked) {
	background: #1967D2;
	color: white;
}

.labelCheckbox > input[type="checkbox"] {
	display: none;
}
.labelCheckbox:has(input[type="checkbox"]:checked) {
	background: #1967D2;
	color: white;
}

.required {
	color: red;
}