body {
  background: #F2F2F2;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.region {
  height: 100%;
  max-width: 960px;
  margin: 50px auto;
  position: relative;
  z-index: 1;
}
.region .region-name {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 0;
  margin: -18px 0 0;
  padding: 0;
  font: 600 30px proxima-nova, proxima-nova-1, proxima-nova-2, "Proxima Nova", arial, helvetica, sans-serif;
}

.round {
  font: 300 15px proxima-nova, proxima-nova-1, proxima-nova-2, "Proxima Nova", arial, helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  padding: 0 20px;
  float: left;
  width: 33.3333333333%;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.round.round-collapse {
  margin-left: -16.666666666%;
}
.round .game {
  background: #FFF;
  border-radius: 3px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 80px;
  pointer-events: auto;
}
.round .game .team {
  display: flex;
  align-items: center;
  flex: 1 1 40px;
  cursor: pointer;
  border-left: 10px solid #DDD;
  transition: .2s;
  /* keep this for smoother transitions: */
  box-shadow: inset 0 40px 0 rgba(255, 255, 255, 0);
}
.round .game .team .team-seed {
  font-size: 10px;
  color: #999;
  flex: 0 1 30px;
  text-align: center;
  transition: .2s;
}
.round .game .team .team-name {
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.round .game .team .team-score {
  font-weight: 600;
  flex: 0 1 30px;
}
.round .game .team .team-score:empty {
  display: none;
}
.round .game .team.team-hover {
  background: #CFC59A;
  color: #FFF !important;
  box-shadow: inset 0 40px 0 rgba(255, 255, 255, 0.2);
}
.round .game .team.team-hover .team-seed {
  color: #FFF;
}
.round .game .team:active {
  box-shadow: inset 0 40px 0 rgba(255, 255, 255, 0);
}
.round .game .team.team-loser {
  background: #F7F7F7;
  color: #BBB;
}

.region-right .round {
  float: right;
}
.region-right .round.round-collapse {
  margin-left: 0;
  margin-right: -16.666666666%;
}
.region-right .round .team {
  border-left: 0;
  border-right: 10px solid #DDD;
  flex-direction: row-reverse;
  text-align: right;
}

.round .game .team-Roosevelt {
  border-color: #0020A5;
}
.round .game .team-ua-ms-mary {
  border-color: #908458;
}
.round .game .team-colorado {
  border-color: #090907;
}
.round .game .team-pitt {
  border-color: #CFC59A;
}
.round .game .team-ucla {
  border-color: #0073CF;
}
.round .game .team-tulsa {
  border-color: #064A99;
}
.round .game .team-vcu {
  border-color: #000000;
}
.round .game .team-stephen-f-austin {
  border-color: #330066;
}
.round .game .team-kansas {
  border-color: #0018A8;
}
.round .game .team-eastern-kentucky {
  border-color: #760018;
}
.round .game .team-new-mexico {
  border-color: #CC003D;
}
.round .game .team-stanford {
  border-color: #8C1515;
}
.round .game .team-syracuse {
  border-color: #FF5113;
}
.round .game .team-western-mich {
  border-color: #62390E;
}
.round .game .team-ohio-st {
  border-color: #AD0F20;
}
.round .game .team-dayton {
  border-color: #C40023;
}
span.logo img {
	border-radius: 30px;
	margin-top: 2px;
	margin-left: 5px;
}
