@import url('https://fonts.googleapis.com/css?family=Coda');
.num{
	font-family: 'Coda', cursive;
	text-align: center;
	color: #000;
	font-size: 170%;
	margin: 5px;
}
.dark-theme .num{
	color: #fff;
}
.modal{
	overflow: initial!important;
	padding-top: 30px
}
.selected-items i{
	display: block;
	text-align: center;
	padding: 20px 0;
	border: 1px solid #e7e7e7;
	margin-bottom: 5px
}
.selected-items i:hover{
	background-color: #e7e7e7;
	opacity: .9;
	cursor: pointer
}
.selected-items label{
	width: 100%;
	text-align: center;
}
.text-center{
	text-align: center
}
.hide{
	display: none;
	opacity: 0;
	overflow: hidden;
	visibility: none
}
.scene {
  width: 80vh;
  height: 80vh;
  margin: 80px;
  perspective: 200vh;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.cube {
  width: 80vh;
  height: 80vh;
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(-40vh);
  transition: transform 1s;
}

.cube.show-front  { transform: translateZ(-40vh) rotateY(   0deg); }
.cube.show-right  { transform: translateZ(-40vh) rotateY( -90deg); }
.cube.show-back   { transform: translateZ(-40vh) rotateY(-180deg); }
.cube.show-left   { transform: translateZ(-40vh) rotateY(  90deg); }
.cube.show-top    { transform: translateZ(-40vh) rotateX( -90deg); }
.cube.show-bottom { transform: translateZ(-40vh) rotateX(  90deg); }

.cube__face {
  position: absolute;
  width: 80vh;
  height: 80vh;
  border: 2px solid #333;
  line-height: 80vh;
  font-size: 40px;
  font-weight: bold;
  color: white;
  text-align: center;
}

.cube > .cube__face{
    background: rgba(255, 255, 255, .9);
}
.cube > .cube__face:nth-child(1)  { transform: rotateY(  0deg) translateZ(40vh); }
.cube > .cube__face:nth-child(3)  { transform: rotateY( 90deg) translateZ(40vh); }
.cube > .cube__face:nth-child(2)   { transform: rotateY(180deg) translateZ(40vh); }
.cube > .cube__face:nth-child(4)   { transform: rotateY(-90deg) translateZ(40vh); }
.cube > .cube__face:nth-child(5)    { transform: rotateX( 90deg) translateZ(40vh); }
.cube > .cube__face:nth-child(6) { transform: rotateX(-90deg) translateZ(40vh); }

.cube__face > img{
	width: 70vh;
	height: 70vh;
	object-fit: contain;
}
.content-bracket{
	position: relative;
	display: block;
	width: 100%;
	height: 100vh;
	padding: 10px;
	overflow: hidden;
}
.content-bracket.dark-theme{
	background-color: #353535;
}
.content-bracket.light-theme{
	background-color: #f3f3f4;
}
.next-content{
	position: relative;
	display: block;
	width: 100%;
	padding: 2px;
	border: 1px solid #5d5d5d;
	border-radius: 5px;
	background-color: #fff;
	margin-bottom: 10px
}
.next-content .title-box{
	border-bottom: 1px solid #5d5d5d;
	padding: 3px 6px;
	position: relative;
}
.next-content .title-box > .light-green{
	color: rgb(25, 169, 54);
	opacity: 1;
  	animation: pulse 1s infinite;
  	border-radius: 50%;
}
.next-content .title-box > .light-red{
	color: rgb(169, 37, 11);
}
.next-content .event-detail{
	padding: 3px 6px;
}
.next-content .event-detail > .flat-icon > img{
	object-fit: contain;
}
.next-content .event-detail > .competitor-name{
	font-size: 110%;
	vertical-align: middle;
	margin-left: 5px;
	font-weight: 600;
}
div > .next-content:last-child{
	margin-bottom: 0
}
.event-row .blue-competitor{
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	border-bottom-right-radius: 3px;
}
.event-row .white-competitor{
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-left-radius: 3px;
}
.event-column .blue-competitor{
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}
.light-theme .blue-competitor{
	background-color: rgba(5, 103, 255, 0.25);
	color: #000
}
.dark-theme .white-competitor{
	background-color: #fff;
	color: #000;
}
.dark-theme .blue-competitor{
	background-color: rgba(5, 103, 255, 0.65);
	color: white
}
.dark-theme .next-content{
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
}
.next-content .round-name{
	font-size: 87%;
	vertical-align: middle;
	margin-right: 5px;
	right: 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.event-row > .event-box{
	display: table;
	width: 100%;
	table-layout: fixed;
}
.event-row > .event-box > .event-detail{
	display: table-cell;
	vertical-align: middle;
}
@-webkit-keyframes pulse {
  0% {
    opacity: 1
  }
  50% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@keyframes pulse {
  0% {
  	opacity: 1
  }
  50% {
    opacity: 0
  }
  100% {
  	opacity: 1
  }
}
.hide-cursor{
	cursor: none!important
}
.tatami-icon{
	background-image: url(image/tatami2.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	vertical-align: middle;
	font-weight: 600;
	color: #fff;
}
.no-padding .next-content{
	margin-bottom: 5px
}
.no-padding .next-content .title-box {
	padding: 1px 6px;
}
.no-padding .next-content .event-detail{
	padding: 1px 6px;
}
.tatami-content-v > div:last-child > .row-space{
	display: none
}
.dark-theme .tatami-icon{
	text-shadow: 0 0 1px black;
	color: #fff;
}