#numbers table {
    table-layout: fixed;
}
#numbers table tr {
    border-bottom: none;
}
#numbers table tr td {
    padding: 1.5% 1%;
}
#numbers img {
    max-width: 100%;
}
#scores, #numbers {
    margin-top: 15px;
}

#scores .btn.score {
    background-color: #2E7D32;
    width: 100%;
    font-size: 20px;
}
#scores .btn.score.active {
    background-color: #fdd835;
    color: #37474f;
}

/* Edit score */
#edit-score input{
	width: 222px;
	font-size: 24px;
}
table.num-pad{
	width: auto;
	margin: auto;
}
table.num-pad td{
	padding: 2px;
}
/* Team # */
.team{
	text-align:center;
	font-size:24px;
	size:36px;
	color:#000;
}
/* Flip-box */
.flip-box {
    background-color: transparent;
    perspective: 1000px;
}
  
.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
  
.flip-box.hover .flip-box-inner {
    transform: rotateY(180deg);
}
  
.flip-box-front, .flip-box-back {
    backface-visibility: hidden;
}
  
.flip-box-back {
    background-color: #eceff1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #37474f;
    transform: rotateY(180deg);
    font-size: 24px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
/* Loader */
.loader {
    left: 50%;
    overflow: hidden;
    padding: 10px 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%);
    width: 150px;
}
.loader .percentage {
    text-align: center;
    margin-top: 25px;
    font-size: 24px;
    color: #4caf50;
}
.loader .ball {
    background: #38d368;
    border-radius: 5px;
    display: block;
    height: 10px;
    left: 15px;
    position: absolute;
    top: 5px;
    width: 10px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: along;
    animation-timing-function: linear;
}
.loader .ball2 {
    background: #508ec3;
    border-radius: 5px;
    display: block;
    height: 10px;
    left: 15px;
    position: absolute;
    top: 5px;
    width: 10px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: along;
    animation-timing-function: linear;
    animation-delay: -1s;
}
.loader ul {
    margin: 0;
    padding: 0;
}
.loader li {
    background-color: #00bff3;
    border-radius: 5px;
    display: inline-block;
    margin: 0;
    height: 10px;
    width: 30px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: around;
    animation-timing-function: linear;
}
.loader li:nth-child(1) {
    animation-delay: 0s;
}
.loader li:nth-child(2) {
    background-color: #82ca9c;
    animation-delay: 0.2s;
}
.loader li:nth-child(3) {
    background-color: #f69679;
    animation-delay: 0.4s;
}
.loader li:nth-child(4) {
    background-color: #acd373;
    animation-delay: 0.6s;
}
.loader li:nth-child(5) {
    background-color: #959595;
    animation-delay: 0.8s;
}
  
@keyframes around {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(359deg);
    }
  }
@keyframes along {
    0% {
      left: 0;
      top: 5px;
    }
    5% {
      top: 3px;
    }
    10% {
      top: 5px;
    }
    15% {
      top: 3px;
    }
    20% {
      top: 5px;
    }
    25% {
      top: 3px;
    }
    30% {
      top: 5px;
    }
    35% {
      top: 3px;
    }
    40% {
      top: 5px;
    }
    45% {
      top: 3px;
    }
    50% {
      left: 100%;
      top: 5px;
    }
    100% {
      left: 100%;
    }
}
  