/* import all used partials */
.bingo-question {
  font-size: 2rem;
  padding: 1rem 0 1rem 0.25rem;
}
@media screen and (min-width: 768px) {
  .bingo-question {
    padding: 1rem 0;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .bingo-question {
    font-size: 3rem;
  }
}

.bingo-panel {
  position: relative;
}
.bingo-panel__overlay {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.69);
  z-index: 2;
  backdrop-filter: blur(16px);
  cursor: pointer;
}
.bingo-panel__overlay--paused {
  display: block;
}
.bingo-panel .container, .bingo-panel .row {
  height: 100%;
}
.bingo-panel .col {
  text-align: center;
}

.container--bingonumbers {
  background-color: lightgrey;
  padding: 0.5em 0;
  border-radius: 0.5rem; /* Rounded borders */
}

.bingo-number {
  border-color: darkorange;
  box-shadow: 3px 3px #888888;
  background-color: lightblue;
  font-size: 2rem;
  width: 100%;
  height: 3rem;
  margin: 0.25em 0;
}
@media screen and (min-width: 768px) {
  .bingo-number {
    font-size: 4rem;
    height: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .bingo-number {
    height: 8rem;
  }
}
.bingo-number--bingo { /* Just a marker*/ }
.bingo-number--success {
  background-color: green;
}
.bingo-number--bingo-color0 {
  background-color: blueviolet;
}
.bingo-number--bingo-color1 {
  background-color: blue;
}
.bingo-number--bingo-color2 {
  background-color: green;
}
.bingo-number--bingo-color3 {
  background-color: yellow;
}
.bingo-number--bingo-color4 {
  background-color: orange;
}
.bingo-number--bingo-color5 {
  background-color: red;
}

/*
a.bingo-button {
  font: bold 11px Arial;
  text-decoration: none;
  background-color: #EEEEEE;
  color: #333333;
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
}
*/
.bingo-button {
  border-color: darkorange;
  box-shadow: 0.25rem 0.25rem #888888;
  background-color: orange;
  font-size: 1rem;
  min-height: 2rem;
  width: 2rem;
  margin: 0.5em 0;
}
.bingo-button--hidden {
  display: none !important;
}
.bingo-button--big {
  font-size: 2rem;
  min-height: 4rem;
  width: 4rem;
}
.bingo-button--bigger {
  font-size: 3rem;
  min-height: 6rem;
  width: 6rem;
}
.bingo-button--full {
  width: 100%;
}
.bingo-button:active {
  box-shadow: 0.125rem 0.125rem #666666;
  position: relative;
  left: 0.125rem;
  top: 0.125rem;
}

/* use full rainbow for bingo animation */
.bingo-row {
  padding: 8px;
}

.bingo-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .bingo-container {
    min-width: 576px;
  }
}
@media (min-width: 768px) {
  .bingo-container { /*MD*/ }
}
@media (min-width: 900px) {
  .bingo-container { /*LG*/
    max-width: 900px;
    width: 900px;
  }
}

/* buttons */
.play-button {
  border-radius: 0.5rem;
  padding-left: 0.75rem;
  text-align: left;
  border-width: 0.25rem;
  border-color: black;
  box-shadow: 0.25rem 0.25rem #999999;
  background-color: orange;
  margin: 0.5rem 0;
  font-size: 2.5rem;
  min-height: 6rem;
  width: 100%;
}
.play-button--baby {
  background-color: rgba(255, 192, 203, 0.69);
}
.play-button--easy {
  background-color: rgba(0, 128, 0, 0.69);
}
.play-button--medium {
  background-color: rgba(0, 0, 255, 0.69);
}
.play-button--hard {
  background-color: rgba(255, 0, 0, 0.69);
}
.play-button--ultra {
  background-color: rgba(128, 0, 128, 0.69);
}
.play-button:active {
  box-shadow: 1px 1px #000000;
  position: relative;
  left: 0.25rem;
  top: 0.25rem;
}

/*TODO #button does not exist anymore, only button--primary */
.button {
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
}
.button--primary {
  border-color: darkorange;
  box-shadow: 3px 3px #888888;
  background-color: greenyellow;
}

.candybar {
  /* TODO em statt px!*/
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: grey;
  color: black;
  text-align: center; /* Centered text */
  border-radius: 5px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
  font-size: x-large;
  /*TODO --info, --warning, ...*/
}
.candybar--success {
  background-color: lightgreen;
}
.candybar--error {
  /*TODO icon */
  background-color: orangered;
  color: black;
}
.candybar--active {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.infobox {
  background-color: grey;
  color: black;
  text-align: center; /* Centered text */
  border-radius: 5px; /* Rounded borders */
  padding: 16px; /* Padding */
}
.infobox--success {
  /*TODO icon */
  background-color: lightgreen;
}

body {
  font-size: x-large !important;
}

@media (max-width: 575.98px) {
  body {
    font-size: xx-large !important;
  }
}
.headline-1 {
  font-size: 32px;
  text-align: center;
}
.headline-1--color1 {
  color: blue;
}
.headline-1--color2 {
  color: red;
}
.headline-1--color3 {
  color: green;
}
.headline-1--color4 {
  color: orange;
}
.headline-1--color5 {
  color: violet;
}
.headline-1 a:hover {
  text-decoration: none;
}

.headline-2 {
  margin-left: 0.5rem;
}

.table-row {
  background-color: yellow;
}
.table-row--odd {
  background-color: lightgreen;
}
.table-row--header {
  background-color: darkblue;
  color: orange;
  padding: 6px;
}

.row-header {
  padding: 6px 0;
  font-weight: bold;
}

/*# sourceMappingURL=mathebingo.css.map */
