.eda-portal {
	color: #151719;
}

.eda-portal h2,
.eda-portal h3 {
	margin-top: 0;
	line-height: 1.2;
	letter-spacing: 0;
}

.eda-portal-panel,
.eda-portal-message,
.eda-portal-login {
	margin: 0 0 22px;
	padding: 22px;
	background: #ffffff;
	border: 1px solid #d9dee2;
	border-radius: 6px;
}

.eda-portal-notice {
	margin: 0 0 18px;
	padding: 12px 14px;
	background: #e9f7ee;
	border-left: 4px solid #227447;
	color: #133d26;
	font-weight: 700;
}

.eda-portal-form {
	display: grid;
	gap: 16px;
}

.eda-portal-form label {
	display: grid;
	gap: 7px;
	font-weight: 700;
}

.eda-portal-form input,
.eda-portal-form select,
.eda-portal-form textarea,
.eda-review-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #b9c2c9;
	border-radius: 6px;
	background: #ffffff;
	color: #151719;
	font: inherit;
}

.eda-portal-form textarea,
.eda-review-form textarea {
	min-height: auto;
	resize: vertical;
}

.eda-portal-checkbox {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 10px;
	font-weight: 500;
}

.eda-portal-checkbox input {
	width: 18px;
	height: 18px;
	min-height: 18px;
	margin-top: 4px;
}

.eda-portal-help {
	margin: 0;
	color: #5c6670;
	font-size: 0.94rem;
}

.eda-hidden-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.eda-portal-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 14px;
	border: 1px solid #227447;
	border-radius: 6px;
	background: #227447;
	color: #ffffff;
	text-decoration: none;
	font-weight: 750;
	cursor: pointer;
}

.eda-portal-button:hover,
.eda-portal-button:focus {
	background: #195b37;
	color: #ffffff;
}

.eda-portal-button--light {
	background: #ffffff;
	color: #227447;
}

.eda-portal-button--danger {
	background: #8f1d1d;
	border-color: #8f1d1d;
}

.eda-portal-table-wrap {
	overflow-x: auto;
}

.eda-portal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.94rem;
}

.eda-portal-table th,
.eda-portal-table td {
	padding: 10px;
	border: 1px solid #d9dee2;
	text-align: left;
	vertical-align: top;
}

.eda-portal-table th {
	background: #f5f6f4;
	font-weight: 800;
}

.eda-review-form {
	display: grid;
	gap: 8px;
	min-width: 210px;
}

.eda-review-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.eda-portal-summary {
	display: grid;
	gap: 12px;
	margin: 0;
}

.eda-portal-summary div {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #d9dee2;
}

.eda-portal-summary dt {
	font-weight: 800;
}

.eda-portal-summary dd {
	margin: 0;
	color: #5c6670;
}

.eda-portal-hubs {
	display: grid;
	gap: 8px;
	padding-left: 1.1rem;
}

@media (max-width: 640px) {
	.eda-portal-summary div {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}

