body {
	font-size: 16px;
	color: #333333;
	font-weight: 500;
	line-height: 1.2;
	user-select: none;
	background-color: #ffffff;
	font-family: 'Montserrat', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

#app {
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	max-width: 500px;
}

input,
select {
	width: 100%;
	height: 40px;
	margin: 0 auto;
	max-width: 500px;
	border-radius: 0;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
}

svg {
	width: 20px;
	max-height: 20px;
	fill: #0071d4;
}

.add,
.random {
	height: 40px;
	display: flex;
	margin-left: 10px;
	align-items: center;
	justify-content: flex-end;
}

.flex {
	display: flex;
}

h2 {
	margin-top: 0;
}

button {
	border: 0;
	height: 40px;
	display: flex;
	padding: 0 25px;
	font-size: 16px;
	color: #ffffff;
	border-radius: 0;
	align-items: center;
	justify-content: center;
	background-color: #0071d4;
}

button svg {
	width: 20px;
	fill: #ffffff;
	max-height: 20px;
}

button.secondary {
	color: #0071d4;
	border: 2px solid #0071d4;
	background-color: #ffffff;
}

button.secondary svg {
	fill: #0071d4;
}

button.link {
	border: 0;
	color: #aaaaaa;
	background-color: transparent;
}

button.link svg {
	fill: #aaaaaa;
}

.willpower {
	margin-top: 50px;
}

.willpower,
.willpower__bid {
	display: flex;
	flex-wrap: wrap;
}

.willpower__bid,
.willpower__button,
.willpower__total {
	width: 100%;
}

.willpower__total {
	font-weight: 900;
}

.willpower__bid {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	align-items: center;
}

.willpower__bid--numberwrap,
.willpower__bid--plusminus,
.willpower__bid--actions {
	width: 33%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.willpower__bid--plusminus,
.willpower__bid--actions {
	height: 144px;
	justify-content: space-around;
}

.willpower__bid--numberwrap {
	align-items: center;
}

.willpower__bid--actions {
	align-items: flex-end;
}

.willpower__bid--title {
	width: 100%;
	text-align: left;
	margin-top: 35px;
}

.willpower__bid--button {
	width: 100%;
	display: flex;
	padding-top: 35px;
    justify-content: center;
}

.willpower__bid--number {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: calc(100% - 80px);
	font-size: 120px;
	font-weight: 900;
	color: #0071d4;
}

.willpower__bid--minus,
.willpower__bid--plus {
	width: 40px;
}

.add_modal {
	padding: 35px;
}

.add_modal,
.willpower__bidding {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	color: #ffffff;
	font-size: 150px;
	font-weight: 900;
	align-items: center;
	flex-direction: column;
	background-color: #0071d4;
	justify-content: space-around;
}

.box {
	padding: 20px;
	margin: 0 -20px 15px;
	background-color: #f4f4f4;
}

.box:first-child {
	margin-top: -20px;
}

.box ul {
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
}

.box ul li {
	display: flex;
	margin-bottom: 10px;
}

.box ul li span:first-child {
	width: 70px;
	flex-shrink: 0;
}

.box ul li span:not(:first-child) {
	padding-left: 10px;
}

.box ul li span:nth-child(2) {
	flex-grow: 1;
}

.mt {
	margin-top: 50px;
}

.mt-half {
	margin-top: 25px;
}

.mx {
	margin-left: 20px;
	margin-right: 20px;
}

.flex-center {
	display: flex;
    justify-content: center;
}

.points {
	display: flex;
	justify-content: space-between;
}

h3 {
	margin: 0;
}

.spinner {
	width: 100%;
	height: 50vh;
	position: relative;
}

.spinner:before {
	content: "";
	top: 50%;
	left: 50%;
	width: 10vh;
	height: 10vh;
	display: block;
	border-width: 4px;
	position: absolute;
	border-radius: 50%;
	border-style: solid;
	animation-name: spin;
	animation-duration: .4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	border-color: #0071d4 transparent transparent transparent;
}

@keyframes spin {
	from {
		transform: translate(-50%,-50%) rotate(0deg);
	}
	to {
		transform: translate(-50%,-50%) rotate(360deg);
	}
}

.mb {
	margin-bottom: 10px;
}