.navbar-dark .navbar-nav .nav-link {
  color: white;
}

body {
  background-color: #eeeeee;
}

.container {
  background-color: white;
  padding: 1.5rem;
}

.header-content {
  padding: 0.5rem;
}

.font-sbold {
  font-size: 55px;
  text-shadow: 0 0 5px black;
  font-weight: bolder;
  color: white;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.table {
  font-size: 19px;
  text-align: center;
  margin-bottom: 0 !important;
}

.txt-width {
  width: 20% !important;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.font-white {
  color: white;
  text-shadow: 0 0 2px black;
}

.font-bold {
  font-weight: 900;
}

.bouncebox {
  width: 50px;
}

.nav-text {
  color: white !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.pagination {
  margin-bottom: 0px !important;
}

.ballnum {
  color: white;
  font-size: 14px;
  font-weight: bold;
  vertical-align: top;
  padding: 9px;
}

.ball {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  position: absolute;
  margin: 70px;
}

.bouncing1 {
  background: radial-gradient(
    circle at 65% 15%,
    #fff 0.5px,
    #ff8661 1%,
    #be0000 60%,
    rgb(255, 186, 173) 100%
  );
  animation: bounce 0.9s;
  transform: translateY(0px);
  animation-iteration-count: infinite;
}

.bouncing2 {
  background: radial-gradient(
    circle at 65% 15%,
    white 1px,
    rgb(0, 195, 255) 1%,
    blue 60%,
    aqua 100%
  );
  animation: bounce 1.2s;
  transform: translateY(0px);
  animation-iteration-count: infinite;
}

.bouncing3 {
  background: radial-gradient(
    circle at 65% 15%,
    #fff 0.5px,
    rgb(155, 221, 0) 1%,
    #00860b 60%,
    rgb(134, 218, 0) 100%
  );
  animation: bounce 1s;
  transform: translateY(0px);
  animation-iteration-count: infinite;
}

.bouncing4 {
  background: radial-gradient(
    circle at 65% 15%,
    #fff 0.5px,
    #ff00f2 1%,
    #af0083 60%,
    #ff00f2 100%
  );
  animation: bounce 1.1s;
  transform: translateY(0px);
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0% {
    top: 0;
    -webkit-animation-timing-function: ease-in;
  }
  40% {
  }
  50% {
    top: 25px;
    height: 25px;
    -webkit-animation-timing-function: ease-out;
  }
  55% {
    top: 30px;
    height: 20px;
    -webkit-animation-timing-function: ease-in;
  }
  65% {
    top: 20px;
    height: 30px;
    -webkit-animation-timing-function: ease-out;
  }
  95% {
    top: 0;
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    top: 0;
    -webkit-animation-timing-function: ease-in;
  }
}

.livealert {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.blinkingbox {
  animation: blinking 1s infinite;
  display: inline-block;
  padding: 0 8px 0 8px;
}

.announcement {
  /* background-color: #cf9b00; */
  color: white;
}

@keyframes blinking {
  0% {
    background-color: red;
    color: white;
  }
  49% {
    background-color: red;
    color: white;
  }
  60% {
    background-color: transparent;
    color: #ffc107;
  }
  99% {
    background-color: transparent;
    color: #ffc107;
  }
  100% {
    background-color: red;
    color: white;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 0.5rem;
  }

  .font-sbold {
    font-size: 40px;
  }

  .ball {
    margin: 43px;
  }

  #prize,
  #prize_wrapper {
    font-size: 12px;
  }

  /* .table {
    font-size: 18px;
  } */

  /* .card-body {
    font-size: 12px;
  } */
}
