
/** Tables **/
table {
	border-right:0;
	clear: both;
	color: #333;
	margin-bottom: 10px;
	width: 100%;
}
th {
	border:0;
	border-bottom:2px solid #555;
	text-align: left;
	padding:4px;
}
th a {
	display: block;
	padding: 2px 4px;
	text-decoration: none;
}
th a.asc:after {
	content: ' ⇣';
}
th a.desc:after {
	content: ' ⇡';
}
table tr td {
	padding: 6px;
	text-align: left;
	vertical-align: top;
	border-bottom:1px solid #ddd;
}
table tr:nth-child(even) {
	background: #f9f9f9;
}
td.actions {
	text-align: center;
	white-space: nowrap;
}
table td.actions a {
	margin: 0px 6px;
	padding:2px 5px;
}



.timer_wrapper {
  border: 0;
  filter: drop-shadow(5px 5px 0px rgba(50, 50, 50, 0.4));
  font-family: "Mouse Memoirs";
  font-size: 2.8rem;
  letter-spacing: 0.08em;
}
#th_timer {
  // color: black;
  // -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  // -webkit-text-stroke-width: 1px;
  // -webkit-text-stroke-color: white;
  // animation: colorjig 1s infinite;

  background: #1852dc;
  clip-path: polygon(0% 0%, 100% 1%, 100% 100%, 5px 93%);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1rem;

  > * {
    min-width: 4rem;
    text-align: center;
  }
}

@keyframes colorjig {
  0% {
    text-shadow: 3px 3px 0 #f00, -1px -1px 0 #0f0, 1px -1px 0 #00f,
      -1px 1px 0 yellow, 1px 1px 0 #000;
  }
  50% {
    text-shadow: 3px 3px 0 #00f, -1px -1px 0 #f00, 1px -1px 0 #0f0,
      -1px 1px 0 green, 1px 1px 0 #000;
  }
  100% {
    text-shadow: 3px 3px 0 #f00, -1px -1px 0 #0f0, 1px -1px 0 #00f,
      -1px 1px 0 yellow, 1px 1px 0 #000;
  }
}

