* {
	touch-action: manipulation;
}
body {
  background: #47acd1;
  font-family: 'Ubuntu', sans-serif;
  -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#toggle-btn {
	background: white;
	margin: 0;
	padding: 4px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
#toggle-btn:hover {
	cursor: pointer;
}
#toggle-btn:active {
	background: #eee;
}
#card {
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 1px -3px 5px #aaa;
  min-width: 300px;
  height: 400px;
  background: white;
  cursor: pointer;
  margin: auto;
}
#card-text {
	text-align: center;
	font-size: 48px;
}
#control-box {
	margin-top: 1px;
	display: flex;
	justify-content: space-between;
}
.control {
	width: 25%;
	height:  100px;
	margin:  0;
	padding:  0;
	-webkit-appearance: none;
	border: 1px solid #ccc;
	background: white;
	font-size: 24px;
}
.control:active {
	background: #aaa;
}

#slider-range {
	width: 95%;
}

#deck-selection {
	list-style-type: none;
	margin: 0;
	padding-bottom: 8px;
}
#deck-selection p {
	margin-top: 2px;
	margin-bottom: 10px;
	padding: 4px;
}
#deck-selection p span {
	/*margin-left: 6px;*/
	padding: 6px;
	position: relative;
	top: 8px;
	right: 2px;
	border: 1px solid #bbb;
	border-radius: 5px;
	background: white;
}
#deck-selection p span:hover {
	text-decoration: underline;
	cursor:  pointer;
}
#deck-selection p span:active {
	background: #eee;
}
#card-number {
	font-style: italic;
}
#slider-range {
	margin:  8px;
}