/* latin */
@font-face {
    font-family: 'Indie Flower';
    font-style: normal;
    font-weight: 400;
    src: local('Indie Flower'), local('IndieFlower'), url(./m8JVjfNVeKWVnh3QMuKkFcZVaUuH99GUDg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.indie-font {
    font-family: 'Indie Flower', cursive;
}
#site-title {
    margin-top: 20px;
}

.board {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.board .card.click {
    opacity: 0.7;
}
.board img {
    max-width: 100%;
}
.deactive {
    pointer-events: none;
    cursor: not-allowed;
}
#boards .col.active {
    background-color: #aaa;
}
button.score { min-width: 160px; }
.score.win {
    font-size: 40px;
    height: 40px;
}
.score.lose {
    font-size: 30px;
    height: 40px;
	color:#FC0;
}
.score.final {
    font-size: 50px;
    height: 40px;
}
.mb-15 {
    margin-bottom: 6px;
}
#time-left span{
    display: inline-block;
}
#time-left span.hundredths {
    width: 36px;
}
#boards .col{
    padding-top: 10px;
    padding-bottom: 10px;
}
#boards .col:first-child{
    border-right: 5px solid #4caf50;
}

/* Edit score */
#edit-score input{
	width: 222px;
	font-size: 24px;
}
table.num-pad{
	width: auto;
	margin: auto;
}
table.num-pad td{
	padding: 2px;
}
/* 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%;
    }
}
  