:root {
	--primary-color: #48546a;
	--primary-disabled-color: #CCCCCC;
	--secondary-color: #ccd234;
	--selected-color: #ed008c;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	overflow-y: scroll;
	margin-bottom: 60px;
}

.header {
	margin-bottom: 20px;
	padding: 1rem 0.5rem 1rem;
	box-shadow: 0 2px 10px 0 #ddd;
	background: #fff;
	color: #333;
}

.footer {
	margin-top: 40px;
	box-shadow: 0 -2px 10px 0 #ddd;
	background: #fff;
	color: #999;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60px; /* Set the fixed height of the footer here */
	line-height: 60px; /* Vertically center the text there */
}

a:hover {
	color: var(--selected-color);
}

col {
	vertical-align: top;
}

.center {
	text-align: center;
}

.question {
	margin-bottom: 20px;
}

button {
	cursor: pointer;
	color: #fff;
	background-color: var(--primary-color);
	border: solid 1px var(--primary-color);
	border-radius: 3px;
	padding: 0.33rem 1rem;
	margin: 0.33rem 0;
	font-size: 1rem;
}
button:hover {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}
button:disabled {
	cursor: not-allowed;
	background-color: var(--primary-disabled-color);
}
button:disabled:hover {
	background-color: var(--primary-disabled-color);
	border: solid 1px var(--primary-color);
}
button.selected, button.selected:hover {
	background-color: var(--selected-color);
	border-color: var(--selected-color);
}

input {
	margin: 0.33rem 0;
	padding: 0.33rem 0.5rem;
	border: solid 1px #777;
	border-radius: 3px;
	font-size: 1rem;
	width: 100%;
}
input.invalid {
	background-color: #f77;
}
input:focus {
	background-color: #fff;
}
input:disabled {
	cursor: not-allowed;
}

iframe.paystation-payment-frame {
	border: none;
	width: 100%;
	min-height: 650px;
}

.errorMessage {
	font-weight: bold;
	color: red;
}

/* Remove spinners from number format */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}