html {
	background: black;
	font-size: 62.5%;
	margin: 0;
	padding: 0;
}
body {
	background-color: white;
	color: black;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: Helvetica, sans-serif;
	font-size: 1.4rem;
	font-family: Montserrat, sans-serif;
}
* {
	box-sizing: border-box;
}
.container {
	position: relative;
	width: 90%;
	margin: auto;
	padding: 3% 0
}
@media screen and (min-width:993px) {
	.container {
		width: 70%;
		max-width: 420px;
	}
	.container-lg {
		max-width: 1200px;
	}
}
header {
	background-color: #121826;
	text-align: center;
	padding: 2rem 0;
}
.logo {
	width: 150px;
}
main {
	padding: 3rem 0;
}
label {
	font-size: 1.3rem;
	color: #777;
	font-weight: 700;
	display: block;
	margin: 0 0 .5em 0;
	text-decoration: none;
}
.input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid rgba(0,0,0, .08);
	background: rgba(0,0,0, .04);
	border-radius: .8rem;
	font-size: 1.6rem;
	line-height: 1;
	padding: 0.9em 1em;
	margin: 0 0 2rem 0;
	width: 100%;
	color: black;
}
.input-icon .input {
	position: relative;
	padding-left: 1.7em;
}
.input-icon {
	position: relative;
}
.input-icon.currency::before {
	display: inline-block;
	content: '£';
	position: absolute;
	z-index: 2;
	left: 1.1em;
	top: 0;
	font: inherit;
	line-height: 50px;
	color: rgba(0,0,0, .8);
}
.btn {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	font-family: inherit;
	border: 1px solid #5DC06E;
	background: #5DC06E;
	color: white;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	padding: 0.9em 1em;
	margin: 0 0 2rem 0;
	width: 100%;
	border-radius: .8rem;
	text-decoration: none;
}
.btn-secondary {
	color: #5DC06E;
	border-color: #5DC06E;
	background-color: white;
}
.btn-secondary:hover {
	background-color: #f4e0e6;
}
.tabs {
	display: flex;
}
.tabs .btn {
	flex: 1 1 50%;
	border-radius: 0;
}
.tabs .btn:first-child {
	border-top-left-radius: .8rem;
	border-bottom-left-radius: .8rem;
}
.tabs .btn:last-child {
	border-top-right-radius: .8rem;
	border-bottom-right-radius: .8rem;
}
.payment-logos {
	text-align: center;
}
.payment-logo {
	width: auto;
	height: 20px;
	display: inline-block;
	margin: .5rem .5rem;
}
.text-center {
	text-align: center;
}
.card-validate {
	margin: -1.5rem 0 2rem 0;
	line-height: 1.5;
	font-size: 1.4rem;
	color: #777;
}
.card-validate.is-valid {
	color: green;
}
.card-validate.is-invalid {
	color: red;
}

.flex-half {
	display: flex;
	justify-content: space-between;
	margin: 0 -0.5rem;
}

.flex-half .col {
	flex: 1 1 50%;
	padding: 0 0.5rem;
}

.flex-half .input {
	width: 100%;
}

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

.error {
	padding: 8px 10px;
	background: #ffe1e1;
	margin: 0 0 1.5rem 0;
	border-radius: 4px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table tr {
	background-color: white;
	border-bottom: 1px solid #ddd;
}

table th, table td {
	padding: 10px 10px;
	text-align: left;
}

table tr.Complete { background-color: #ebffec; }
table tr.Rejected { background-color: #ffebeb; }

table th.text-right, table td.text-right {
	text-align: right;
}

table tbody tr:hover {
	filter: brightness(.95);
}

table .controls {
	visibility: hidden;
}

table tbody tr:hover .controls {
	visibility: visible;
}

.btn-sm {
	cursor: pointer;
	width: auto;
	font-size: 1.3rem;
	padding: 3px 5px;
	margin: 1px 0;
	display: inline-block;
	border-radius: 3px;
}

.btn-sm.accept-withdraw {
	background: #25b435;
}

.btn-sm:hover {
	filter: brightness(1.2);
}

.flex {
	display: flex;
	gap: 8px;
}

.flex .col {
	flex: 1 1 auto;
}