#inputbox {
	border-radius: 24px;
	-moz-border-radius: 24px;
	-webkit-border-radius: 24px;
	border: 5px solid #240b48;
	
	text-align: center;
  	/*font-size: 1em;*/
  	color: #000;
 	 margin-bottom: .3em;
  
  	letter-spacing: 0.125em;
	font-family: Arial, Helvetica, sans-serif;
	
	background-color: #ffffff;
	

}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.taskcode
{
letter-spacing: 0.25em;
font-family: MantiSansFixedDemo-1GDn4;
color: white;
}

.taskcodebad
{
letter-spacing: 0.25em;
font-family: MantiSansFixedDemo-1GDn4;
color: red;
}


.fade-in {
  animation: fadeIn linear 1s;
  -webkit-animation: fadeIn linear 1s;
  -moz-animation: fadeIn linear 1s;
  -o-animation: fadeIn linear 1s;
  -ms-animation: fadeIn linear 1s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}



.fade-out {
  animation: fadeOut linear 1s;
  -webkit-animation: fadeOut linear 1s;
  -moz-animation: fadeOut linear 1s;
  -o-animation: fadeOut linear 1s;
  -ms-animation: fadeOut linear 1s;
}

@keyframes fadeOut {
  100% {opacity:1;}
  0% {opacity:0;}
}

@-moz-keyframes fadeOut {
  100% {opacity:1;}
  0% {opacity:0;}
}

@-webkit-keyframes fadeOut {
  100% {opacity:1;}
  0% {opacity:0;}
}

@-o-keyframes fadeOut {
  100% {opacity:1;}
  0% {opacity:0;}
}

@-ms-keyframes fadeOut {
  100% {opacity:1;}
  0% {opacity:0;}
}



::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  font-family: "Arial";
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000000;
  font-family: "Arial";
  opacity: 1;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #000000;
  font-family: "Arial";
  opacity: 1;
}