:root {
    --brand-blue-dark: #06335C;
    --brand-blue-light: #156cbb;
	--primary-colour: #0acf58;
	--secondary-colour: #333;
	--action-colour: #fdcb40;
}

hr {
    border-top: 2px solid var(--primary-colour);
}

textarea {
    width: 100%;
}

.w3-button {
    background-color: var(--primary-colour);
    color: white;
    font-size: 1.2em;
	margin: 10px;
}

.w3-button:hover {
    background-color: #ccc!IMPORTANT;
    color: var(--primary-colour)!IMPORTANT;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table.border, table.border>th, table.border>td {
    border: 1px solid grey;
    padding: 3px 10px;
    font-size: calc(10px + 0.4vw);
}

th {
    background-color: #06335C;
    color: white;
}

.w3-row {
    /*display: flex!IMPORTANT;*/
    display: flow-root;
}

.w3-row-padding {
    /*display: flex!IMPORTANT;*/
    display: flow-root;
}

.w3-container {
    display: grid!IMPORTANT;
}

.w3-btn, .w3-button {
    border-radius: 10px;
}

.inp {
	font-size: 20px;
	border: 1px solid #d1d1d1;
	border-radius: 10px;
	padding: 10px;
}

label {
	font-size: 24px;
}

@media screen and (max-width: 500px) {
	.w3-button {
		width: 96%;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.inp {
		width: 96%;
	}
}

p {
	font-size: 20px;
}

p.notification {
	padding: 0;
	margin: 0;
}

p.notification>i {
	color: red;
	padding: 5px;
}

table {
	font-size: 18px;
}

tr {
	border-bottom: 1px solid #dcdcdc;
}

th {
	background-color: var(--primary-colour);
	font-size: 20px;
}