* {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	min-height: 100vh;
	background-color: #113EF5;
	color: #ffffff;
	margin: 0;
	padding: 2rem;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.6rem;
}

h1, h2, h3, h4, h5, h6, p, ol, ul {
	margin-top: 0;
	margin-bottom: 1em;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ol:last-child,
ul:last-child {
	margin-bottom: 0;
}

.logo {
	margin-bottom: 2rem;
}

a {
	color: inherit;
}

.btn--a11y {
	border: none;
	background-color: transparent;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-align: inherit;
	color: inherit;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn {
	background-color: white;
    border: none;
    padding: 1rem 2rem;
    color: black;
    margin: 3rem 0;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
	background-color: #1D2125;
	color: white;
}

.btn[disabled],
.btn.disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.btn-icon {
	opacity: 1;
	transition: opacity 0.3s;
}

.btn-icon:hover {
	opacity: 0.6;
}

.flex {
	display: flex;
	gap: 0.5rem;
}

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

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "a b"
						 "c c";
	gap: 2rem;
}

.grid--compare {
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas: "a b c";
}

.hidden {
	display: none !important;
}

table {
	border-collapse: collapse;
	background-color: #1D2125;
}

table thead tr {
	background-color: #000000;
}

table th,
table td {
	padding: 1rem;
	border: 1px solid #4b5562;
}

table td input {
	width: 100%;
	padding: 1rem;
	border: none;
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #343b44;
}

.tooltip {
	position: relative;
}

.tooltip__icon {
	cursor: help;
	display: block;
}

.tooltip__icon:hover + .tooltip__content,
.tooltip__icon:focus-visible + .tooltip__content {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.tooltip__content {
	position: absolute;
	bottom: calc(100% + 2rem);
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffffff;
	color: #000000;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	pointer-events: none;
	width: 230px;
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
}

.tooltip__content::before {
	content: "";
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
	background-color: #ffffff;
	clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}