@CHARSET "UTF-8";

.enter-stage-right {
  -moz-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-name: slidein;
  -webkit-animation-name: slidein;
}

@-moz-keyframes slidein {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 10%;
  }
}

@-webkit-keyframes slidein {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 10%;
  }
}

.enter-stage-south {
  -moz-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-name: slide-up;
  -webkit-animation-name: slide-up;
}

@-moz-keyframes slide-up {
  from {
    margin-top: 100%;
  }
  to {
    margin-top: 0%;
  }
}

@-webkit-keyframes slide-up {
  from {
    margin-top: 100%;
  }
  to {
    margin-top: 0%;
  }
}

button {
  color: #000000 !important;
}

p {
  padding-top: 20px;
}

.btn{
  border-radius: 10px;
}

.btn.btn-danger {
  border-radius: 15px;
}

.btn.btn-info {
  border-radius: 15px;
}

.btn.btn-warning {
  border-radius: inherit;
  box-shadow: none;
  border: none;
  color: #ffffff;
  background-color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}


.btn-warning:active,
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:before,
.btn-warning:hover {
  box-shadow: none;
  mso-border-shadow: none;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  background-color: #ffffff;
}

@font-face {
  font-family: digital;
  src: url(Open24DisplaySt.ttf);
  font-weight: 400;
}

.digital {
  font-family: digital;
  font-size: 2em;
}


.col-a {
  color: yellow;
  background-color: yellow;
}

.col-b {
  color: orange;
  background-color: orange;
}

.col-c {
  color: red;
  background-color: red;
}

.col-d {
  color: darkred;
  background-color: darkred;
}

.col-e {
  color: blueviolet;
  background-color: blueviolet;
}

.col-f {
  color: blue;
  background-color: blue;
}

.col-g {
  color: turquoise;
  background-color: turquoise;
}

.col-h {
  color: green;
  background-color: green;
}

.empty {
  background-color: white;
  border-radius: none;
  box-shadow: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.top-row {
  background-color: white;
  padding-top: 5px;
}

.body-row {
  background-color: white;
}

.bottom-row {
  background-color: white;
  padding-bottom: 5px;
}










