html {
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: Verdana, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
	margin: 20px 0;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

header {
	overflow: auto;
	padding: 0 20px 20px 20px;
}

.rolls {
	padding: 0 15px;
}

.roll.glitch .dice.glitch {
	background-color: #CC885D;
}
.roll.glitch.critical .dice.glitch {
	background-color: #CC595D;
}

.dice {
	margin: 5px;
	border: 2px solid #000;
	font-size: 1rem;
	height: 2.5em;
	width: 2.5em;
	line-height: 2.2em;
	text-align: center;
	border-radius: 20%;
	float: left;
	background-color: #C4C4C2;
	cursor: default;
	transition: all 0.3s;
}
.dice.glitch {
	background-color: #CCC483;
}
.dice.success {
	background-color: #86E38C;
}
.dice.exploding {
	background-color: #40AB3C;
}

/* Shadowrun 5 */
.shadowrun5 .dice {
	cursor: pointer;
}
.shadowrun5 .dice[data-number="5"] {
	cursor: default;
}