﻿@font-face {
	font-family: "Goldman Sans";
	font-style: normal;
	font-weight: 400;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_Rg.woff") format("woff");
}
@font-face {
	font-family: "Goldman Sans";
	font-style: italic;
	font-weight: 400;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_It.woff") format("woff");
}
@font-face {
	font-family: "Goldman Sans";
	font-style: normal;
	font-weight: 200;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_Th.woff") format("woff");
}
@font-face {
	font-family: "Goldman Sans";
	font-style: normal;
	font-weight: 300;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_Lt.woff") format("woff");
}
@font-face {
	font-family: "Goldman Sans";
	font-style: normal;
	font-weight: 500;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_Md.woff") format("woff");
}
@font-face {
	font-family: "Goldman Sans";
	font-style: italic;
	font-weight: 500;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_MdIt.woff")
		format("woff");
}
@font-face {
	font-family: "Goldman Sans";
	font-style: normal;
	font-weight: 700;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_Bd.woff") format("woff");
}
@font-face {
	font-family: "Goldman Sans";
	font-style: italic;
	font-weight: 700;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_BdIt.woff")
		format("woff");
}
@font-face {
	font-family: "Goldman Sans";
	font-style: normal;
	font-weight: 900;
	src: local("Goldman Sans"), url("./fonts/GoldmanSans_Blk.woff") format("woff");
}
@font-face {
	font-family: "Goldman Sans Condensed";
	font-style: normal;
	font-weight: 400;
	src: local("Goldman Sans Condensed"), url("./fonts/GoldmanSansCd_Rg.woff")
		format("woff");
}
@font-face {
	font-family: "Goldman Sans Condensed";
	font-style: normal;
	font-weight: 700;
	src: local("Goldman Sans Condensed"), url("./fonts/GoldmanSansCd_Bd.woff")
		format("woff");
}

html {
	--color-primary-50: #e9f2f0;
	--color-primary-75: #cadfd8;
	--color-primary-100: #abcac0;
	--color-primary-200: #8eb4a8;
	--color-primary-300: #719e8f;
	--color-primary-400: #568676;
	--color-primary-500: #3b6d5d;
	--color-primary-600: #29594a;
	--color-primary-700: #1a4336;
	--color-primary-800: #0d2a20;
	--color-primary-900: #030d0a;
	--color-grey-50: #f5f5f5;
	--color-grey-75: #e7e7e7;
	--color-grey-100: #d8d8d8;
	--color-grey-200: #c9c9c9;
	--color-grey-300: #bababa;
	--color-grey-400: #acacac;
	--color-grey-500: #9d9d9d;
	--color-grey-600: #7a7a7a;
	--color-grey-700: #565656;
	--color-grey-800: #333333;
	--color-grey-900: #101010;

	font-family: "Goldman Sans", sans-serif;
	font-size: 16px;
	--page-max-width: min(calc(100vw - 10px), 1600px);
}

* {
	margin: 0;
	box-sizing: border-box;
}

.typo-3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
	margin: 0;
}
.typo-body-large {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin: 0;
}
.typo-body-small {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin: 0;
}
.typo-label {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin: 0;
}
.typo-caption {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	margin: 0;
}

#page-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px;
}

#main-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	max-width: var(--page-max-width);
	margin-bottom: 20px;
}

#nav-tabs,
#page-content {
	width: 100%;
	max-width: var(--page-max-width);
	display: flex;
	gap: 24px;
}
#nav-tabs {
	z-index: 50;
}
#page-content {
	padding: 20px;
	border: 1px solid var(--color-grey-400);
}

.btn-primary,
.btn-grey {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin: 0;
	padding: 5px 20px;
	border: none;
	cursor: pointer;
	width: fit-content;
}
.btn-primary {
	color: white;
	background-color: var(--color-primary-500);
}
.btn-primary:hover {
	background-color: var(--color-primary-600);
}
.btn-grey {
	color: black;
	background-color: var(--color-grey-100);
}
.btn-grey:hover {
	background-color: var(--color-grey-300);
}

.input-container {
	display: flex;
	flex-direction: column;
}
.input-container label {
	font-size: 12px;
	line-height: 16px;
}
.input-container input,
.input-container textarea {
	font-size: 14px;
	line-height: 20px;
	padding: 4px 8px;
	border: 1px solid var(--color-grey-300);
	resize: none;
}

.input-container select {
	font-size: 14px;
	line-height: 20px;
	padding: 4px 8px;
	border: 1px solid var(--color-grey-300);
}

.alert {
	text-decoration: none;
	font-size: 10pt;
	color: red;
	font-weight: normal;
}

.radio-input {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-right: 8px;
}
.radio-input input {
	margin: 0;
	width: 16px;
	height: 16px;
}
.radio-input label {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-wrap: nowrap;
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 4px;
}
.checkbox label {
	text-box-trim: trim-end;
	font-size: 14px;
	line-height: 20px;
	margin-right: 8px;
}
