button.score.one {
	width: 200px;
	max-width: 100%;
  	border-radius: 28px;
	font-size: 28px;
	background-color:#090;
}
button.score.two {
	width: 200px;
	max-width: 100%;
  	border-radius: 28px;
	font-size: 28px;
	background-color:#00F;
}
button.score.three {
	width: 200px;
	max-width: 100%;
  	border-radius: 28px;
	font-size: 28px;
	background-color:#F00;
}
button.score {
	width: 200px;
	max-width: 100%;
  	border-radius: 28px;
	font-size: 28px;
	background-color:#90C;
}
button.score.active {
  background-color: #ffc400;
  font-size:36px;
  color:#000;
}
#main {
  padding-top: 10px;
}
#image {
  	height: 450px;
  	width: 450px;
  	margin: 25px auto 5px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	max-height: 100vw;
}
#text {
	color: #263238;
	font-size: 60px;
}
.big-text {
  font-size: 26px;
}
#seconds-left, #points {
  font-size: 64px;
  line-height: 1;
}
#image img {
	height:100%;
	width: 100%;
 	max-height: 100%;
  	max-width: 100%;
}
.vertical-space {
	height: 100px;
}
.animate-elm {
	font-size: 60px;
	font-weight: bold;
}
.mb25 {
	margin-bottom: 25px;
}
/* Keypad */
#edit-score input{
  width: 222px;
  font-size: 24px;
}
table.num-pad{
  width: auto;
  margin: auto;
}
table.num-pad td{
  padding: 2px;
}
table.num-pad td button{
  width: 70px;
}


@media only screen and (max-width: 600px) {
	button.score {
		margin-bottom: 10px;
	}
}
/* 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%;
    }
}