.tag,
.text-uppercase,
legend {
	text-transform: uppercase;
}

:root {
	--bg-color: #f8fafc;
	--bg-secondary-color: #f1f5f9;
	--color-primary: #14854f;
	--color-lightGrey: #d1d5db;
	--color-grey: #6b7280;
	--color-darkGrey: #374151;
	--color-error: #b91c1c;
	--color-success: #22c55e;
	--grid-maxWidth: 120rem;
	--grid-gutter: 2rem;
	--font-size: 1.6rem;
	--font-color: #333;
	--font-family-sans: -apple-system, BlinkMacSystemFont, Avenir, 'Avenir Next', 'Segoe UI',
		'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
		sans-serif;
	--font-family-mono: monaco, 'Consolas', 'Lucida Console', monospace;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
}

*,
:after,
:before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

* {
	scrollbar-color: var(--color-lightGrey) var(--bg-primary);
	scrollbar-width: thin;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
	background: var(--color-lightGrey);
}

body {
	background-color: var(--bg-color);
	color: var(--font-color);
	font-family: Segoe UI, Helvetica Neue, sans-serif;
	font-family: var(--font-family-sans);
	font-size: var(--font-size);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	margin: 0.35em 0 0.7em;
}

h1 {
	font-size: 2em;
}

.nav .brand,
h2 {
	font-size: 1.75em;
}

h3 {
	font-size: 1.5em;
}

h4 {
	font-size: 1.25em;
}

h5 {
	font-size: 1em;
}

h6 {
	font-size: 0.85em;
}

a {
	color: #8a02d1;
	text-decoration: none;
}

a:hover:not(.button) {
	opacity: 0.75;
}

button {
	font-family: inherit;
}

p {
	margin-top: 0;
}

hr {
	background-color: var(--color-lightGrey);
	height: 0.5px;
	margin: 0.5rem 0;
}

img {
	max-width: 100%;
}

fieldset {
	border: 1px solid var(--color-lightGrey);
	padding: 0.5rem 2rem;
}

.container {
	margin: 0 auto;
	max-width: var(--grid-maxWidth);
	padding: 0 calc(var(--grid-gutter) / 2);
	width: 96%;
}

.mt-3 {
	margin-top: 3rem !important;
}

.mx-auto {
	margin: 0 auto !important;
}

.row {
	-webkit-box-direction: normal;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin-left: calc(var(--grid-gutter) / -2);
	margin-right: calc(var(--grid-gutter) / -2);
}

.row,
.row.reverse {
	-webkit-box-orient: horizontal;
}

.row.reverse {
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.col,
.nav-center,
.nav-left,
.nav-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.col,
[class*=' col-'],
[class^='col-'] {
	margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
}

.col-1 {
	-ms-flex: 0 0 calc(8.33333% - var(--grid-gutter));
	flex: 0 0 calc(8.33333% - var(--grid-gutter));
	max-width: calc(8.33333% - var(--grid-gutter));
}

.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9 {
	-webkit-box-flex: 0;
}

.col-2 {
	-ms-flex: 0 0 calc(16.66667% - var(--grid-gutter));
	flex: 0 0 calc(16.66667% - var(--grid-gutter));
	max-width: calc(16.66667% - var(--grid-gutter));
}

.col-3 {
	-ms-flex: 0 0 calc(25% - var(--grid-gutter));
	flex: 0 0 calc(25% - var(--grid-gutter));
	max-width: calc(25% - var(--grid-gutter));
}

.col-4 {
	-ms-flex: 0 0 calc(33.33333% - var(--grid-gutter));
	flex: 0 0 calc(33.33333% - var(--grid-gutter));
	max-width: calc(33.33333% - var(--grid-gutter));
}

.col-5 {
	-ms-flex: 0 0 calc(41.66667% - var(--grid-gutter));
	flex: 0 0 calc(41.66667% - var(--grid-gutter));
	max-width: calc(41.66667% - var(--grid-gutter));
}

.col-6 {
	-ms-flex: 0 0 calc(50% - var(--grid-gutter));
	flex: 0 0 calc(50% - var(--grid-gutter));
	max-width: calc(50% - var(--grid-gutter));
}

.col-7 {
	-ms-flex: 0 0 calc(58.33333% - var(--grid-gutter));
	flex: 0 0 calc(58.33333% - var(--grid-gutter));
	max-width: calc(58.33333% - var(--grid-gutter));
}

.col-8 {
	-ms-flex: 0 0 calc(66.66667% - var(--grid-gutter));
	flex: 0 0 calc(66.66667% - var(--grid-gutter));
	max-width: calc(66.66667% - var(--grid-gutter));
}

.col-9 {
	-ms-flex: 0 0 calc(75% - var(--grid-gutter));
	flex: 0 0 calc(75% - var(--grid-gutter));
	max-width: calc(75% - var(--grid-gutter));
}

.col-10 {
	-ms-flex: 0 0 calc(83.33333% - var(--grid-gutter));
	flex: 0 0 calc(83.33333% - var(--grid-gutter));
	max-width: calc(83.33333% - var(--grid-gutter));
}

.col-11 {
	-ms-flex: 0 0 calc(91.66667% - var(--grid-gutter));
	flex: 0 0 calc(91.66667% - var(--grid-gutter));
	max-width: calc(91.66667% - var(--grid-gutter));
}

.col-12 {
	-ms-flex: 0 0 calc(100% - var(--grid-gutter));
	flex: 0 0 calc(100% - var(--grid-gutter));
	max-width: calc(100% - var(--grid-gutter));
}

@media screen and (min-width: 900px) {
	.col-1-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(8.33333% - var(--grid-gutter));
		flex: 0 0 calc(8.33333% - var(--grid-gutter));
		max-width: calc(8.33333% - var(--grid-gutter));
	}

	.col-2-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(16.66667% - var(--grid-gutter));
		flex: 0 0 calc(16.66667% - var(--grid-gutter));
		max-width: calc(16.66667% - var(--grid-gutter));
	}

	.col-3-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(25% - var(--grid-gutter));
		flex: 0 0 calc(25% - var(--grid-gutter));
		max-width: calc(25% - var(--grid-gutter));
	}

	.col-4-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(33.33333% - var(--grid-gutter));
		flex: 0 0 calc(33.33333% - var(--grid-gutter));
		max-width: calc(33.33333% - var(--grid-gutter));
	}

	.col-5-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(41.66667% - var(--grid-gutter));
		flex: 0 0 calc(41.66667% - var(--grid-gutter));
		max-width: calc(41.66667% - var(--grid-gutter));
	}

	.col-6-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - var(--grid-gutter));
		flex: 0 0 calc(50% - var(--grid-gutter));
		max-width: calc(50% - var(--grid-gutter));
	}

	.col-7-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(58.33333% - var(--grid-gutter));
		flex: 0 0 calc(58.33333% - var(--grid-gutter));
		max-width: calc(58.33333% - var(--grid-gutter));
	}

	.col-8-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(66.66667% - var(--grid-gutter));
		flex: 0 0 calc(66.66667% - var(--grid-gutter));
		max-width: calc(66.66667% - var(--grid-gutter));
	}

	.col-9-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(75% - var(--grid-gutter));
		flex: 0 0 calc(75% - var(--grid-gutter));
		max-width: calc(75% - var(--grid-gutter));
	}

	.col-10-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(83.33333% - var(--grid-gutter));
		flex: 0 0 calc(83.33333% - var(--grid-gutter));
		max-width: calc(83.33333% - var(--grid-gutter));
	}

	.col-11-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(91.66667% - var(--grid-gutter));
		flex: 0 0 calc(91.66667% - var(--grid-gutter));
		max-width: calc(91.66667% - var(--grid-gutter));
	}

	.col-12-md {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(100% - var(--grid-gutter));
		flex: 0 0 calc(100% - var(--grid-gutter));
		max-width: calc(100% - var(--grid-gutter));
	}
}

legend {
	font-size: 0.8em;
	letter-spacing: 0.1rem;
}

input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='color']):not(
		[type='button']
	):not([type='reset']):not(:disabled):hover,
select:hover,
textarea:hover,
textarea[type='text']:hover {
	border-color: var(--color-grey);
}

input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='color']):not(
		[type='button']
	):not([type='reset']):focus,
select:focus,
textarea:focus,
textarea[type='text']:focus {
	border-color: var(--color-primary);
	-webkit-box-shadow: 0 0 1px var(--color-primary);
	box-shadow: 0 0 1px var(--color-primary);
	outline: 0;
}

input.error:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='color']):not(
		[type='button']
	):not([type='reset']),
textarea.error {
	border-color: var(--color-error);
}

input.success:not([type='checkbox']):not([type='radio']):not([type='submit']):not(
		[type='color']
	):not([type='button']):not([type='reset']),
textarea.success {
	border-color: var(--color-success);
}

[type='checkbox'],
[type='radio'] {
	height: 1.6rem;
	width: 1.6rem;
}

.button,
[type='button'],
[type='reset'],
[type='submit'],
button {
	color: var(--color-darkGrey);
	cursor: pointer;
	display: inline-block;
	font-size: var(--font-size);
	line-height: 1;
	padding: 1rem 2.5rem;
	text-align: center;
	text-decoration: none;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.button:hover,
[type='button']:hover,
[type='reset']:hover,
[type='submit']:hover,
button:hover {
	opacity: 0.8;
}

.button:active,
[type='button']:active,
[type='reset']:active,
[type='submit']:active,
button:active {
	-webkit-transform: scale(0.98);
	transform: scale(0.98);
}

button:disabled,
button:disabled:hover,
input:disabled,
input:disabled:hover {
	cursor: not-allowed;
	opacity: 0.4;
}

.button.dark,
.button.error,
.button.primary,
.button.secondary,
.button.success,
[type='submit'] {
	background-color: #000;
	background-color: var(--color-primary);
	color: #fff;
	z-index: 1;
}

.button.secondary {
	background-color: var(--color-grey);
}

.button.dark {
	background-color: var(--color-darkGrey);
}

.button.error {
	background-color: var(--color-error);
}

.button.success {
	background-color: var(--color-success);
}

.button.outline {
	background-color: transparent;
	border-color: var(--color-lightGrey);
}

.button.outline.primary {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.button.outline.secondary {
	border-color: var(--color-grey);
	color: var(--color-grey);
}

.button.outline.dark {
	border-color: var(--color-darkGrey);
	color: var(--color-darkGrey);
}

.button.clear {
	background-color: transparent;
	border-color: transparent;
	color: var(--color-primary);
}

.button.icon {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.button.icon > img {
	margin-left: 2px;
}

::-webkit-input-placeholder {
	color: #bdbfc4;
}

::-moz-placeholder {
	color: #bdbfc4;
}

:-ms-input-placeholder {
	color: #bdbfc4;
}

::-ms-input-placeholder {
	color: #bdbfc4;
}

::placeholder {
	color: #bdbfc4;
}

.card {
	background: var(--bg-color);
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px var(--color-grey);
	box-shadow: 0 1px 3px var(--color-grey);
	padding: 1rem 2rem;
}

.card p:last-child {
	margin: 0;
}

.card header > * {
	margin-bottom: 1rem;
	margin-top: 0;
}

.bg-error {
	background-color: var(--color-error) !important;
}

.bg-success {
	background-color: var(--color-success) !important;
}

.bd-error {
	border: 1px solid var(--color-error) !important;
}

.bd-success {
	border: 1px solid var(--color-success) !important;
}

.text-error {
	color: var(--color-error) !important;
}

.text-success {
	color: var(--color-success) !important;
}

.text-white {
	color: #fff !important;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.is-hidden {
	display: none !important;
}

@media screen and (max-width: 599px) {
	.container {
		width: 100%;
	}

	.col,
	[class*='col-'],
	[class^='col-'] {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 100%;
		flex: 0 1 100%;
		max-width: 100%;
	}

	.hide-xs {
		display: none !important;
	}
}

@media screen and (min-width: 600px) and (max-width: 899px) {
	.hide-sm {
		display: none !important;
	}
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
	.hide-md {
		display: none !important;
	}
}

@media screen and (min-width: 1200px) {
	.col-1-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(8.33333% - var(--grid-gutter));
		flex: 0 0 calc(8.33333% - var(--grid-gutter));
		max-width: calc(8.33333% - var(--grid-gutter));
	}

	.col-2-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(16.66667% - var(--grid-gutter));
		flex: 0 0 calc(16.66667% - var(--grid-gutter));
		max-width: calc(16.66667% - var(--grid-gutter));
	}

	.col-3-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(25% - var(--grid-gutter));
		flex: 0 0 calc(25% - var(--grid-gutter));
		max-width: calc(25% - var(--grid-gutter));
	}

	.col-4-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(33.33333% - var(--grid-gutter));
		flex: 0 0 calc(33.33333% - var(--grid-gutter));
		max-width: calc(33.33333% - var(--grid-gutter));
	}

	.col-5-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(41.66667% - var(--grid-gutter));
		flex: 0 0 calc(41.66667% - var(--grid-gutter));
		max-width: calc(41.66667% - var(--grid-gutter));
	}

	.col-6-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - var(--grid-gutter));
		flex: 0 0 calc(50% - var(--grid-gutter));
		max-width: calc(50% - var(--grid-gutter));
	}

	.col-7-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(58.33333% - var(--grid-gutter));
		flex: 0 0 calc(58.33333% - var(--grid-gutter));
		max-width: calc(58.33333% - var(--grid-gutter));
	}

	.col-8-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(66.66667% - var(--grid-gutter));
		flex: 0 0 calc(66.66667% - var(--grid-gutter));
		max-width: calc(66.66667% - var(--grid-gutter));
	}

	.col-9-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(75% - var(--grid-gutter));
		flex: 0 0 calc(75% - var(--grid-gutter));
		max-width: calc(75% - var(--grid-gutter));
	}

	.col-10-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(83.33333% - var(--grid-gutter));
		flex: 0 0 calc(83.33333% - var(--grid-gutter));
		max-width: calc(83.33333% - var(--grid-gutter));
	}

	.col-11-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(91.66667% - var(--grid-gutter));
		flex: 0 0 calc(91.66667% - var(--grid-gutter));
		max-width: calc(91.66667% - var(--grid-gutter));
	}

	.col-12-lg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(100% - var(--grid-gutter));
		flex: 0 0 calc(100% - var(--grid-gutter));
		max-width: calc(100% - var(--grid-gutter));
	}

	.hide-lg {
		display: none !important;
	}
}

@media print {
	.hide-pr {
		display: none !important;
	}
}

.tooltip {
	position: relative;
	display: inline-block;
	vertical-align: text-top;
	font-size: 20px;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 300px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	left: -310px;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}
