/*
 * Globals
 */


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none;
  /* Prevent inheritance from `body` */
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}


/*
 * Base structure
 */
.grad-background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
  background-size: contain;
  background-repeat: repeat;
  z-index: -10;
}

.car-background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-image: url("./images/voronoi-car.png");
  background-size: cover;
  background-repeat: no-repeat;

  z-index: 0;
}

@media only screen and (max-width: 800px) {
  .car-background {
    background-position: right;
    height: 400px;
    top: 100px;
    right: -30%;
  }

  .grad-background {
    height: 1500px;
  }

  .dashboard {
    padding: 0;
  }
}

.cover-container {
  max-width: 60em;
  z-index: 1;
}


.landing {
  height: 450px;
  max-width: 30em;
}

.registration {
  width: 230px;
}

.btn {
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
  background-size: contain;
  border: none;
  width: 300px;
  min-height: 75px;
}


.overview,
.average-statistics,
.loading-block,
.mot-stats,
.error-alert,
.mot-history,
.prediction-container,
.notes-container,
.cars-left-container {
  display: none;
}

input {
  text-align: center;
}

input#registration-input {
  text-transform: uppercase
}

.prediction-badge-0 {
  background-color: #ff0000;
}

.prediction-badge-1 {
  background-color: orangered;
}

.prediction-badge-2 {
  background-color: orange;
}

.prediction-badge-3 {
  background-color: #CED424;
}

.prediction-badge-4 {
  background-color: #adff2f;
}

.prediction-badge-5 {
  background-color: #00ff00;
}