@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);

html,
body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
  font-family: "Roboto Condensed";
  color: #fff;
  /* background-image: linear-gradient(to top, #d43f8d 0%, #0250c5 100%); */
  min-height: 100vh;
}

.day {
  background-image: linear-gradient(to top, #d43f8d 0%, #0250c5 100%);
}

.night {
  background-image: linear-gradient(to top, rgba(25, 25, 25, 1), rgba(50, 50, 50, 1));
}

#container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

#logo {
  width: 90%;
  height: auto;
  object-fit: cover;
}

.buienradarframe {
  position: absolute;
  right:10px;
  bottom: 40px;
  width: 20%;
}

.menu-bar {
  padding-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* fraction*/
}

.menu-item {
  text-align: center;
}

.menu-text {
  text-align: center;
}

.menu-image {
  width: 50%;
}

.menu-image-small {
  width: 15%;
}


/* <--- BREAKING NEWS BAR --->*/

.top_bar {
  position: absolute;
  width: 100%;
  height: 40px;
  background-color: rgba(0, 6, 67, 1);
}

.breakingnewsimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 40px;
  /* padding-left: 10px; */
  line-height: 40px;
  background-image: linear-gradient(to right,
      rgba(0, 6, 67, 1),
      rgba(0, 0, 0, 0));
  z-index: 9000;
}

.breaking_news {
  height: 40px;
}

.ticker_bar {
  width: 100%;
}

.ticker_correction {
  margin: 10px;
}

.ticker {
  display: flex;
  padding-left: 100%;
  overflow: hidden;
}

.ticker ul {
  display: flex;
  list-style: none;
}

.ticker li {
  padding-left: 1rem;
  white-space: nowrap;
}

.ticker li:first-child {
  padding-left: 0;
}

.ticker li::before {
  content: "+++";
  display: inline;
  padding-right: 1rem;
}

.ticker li:last-child::after {
  content: "+++";
  display: inline;
  padding-left: 1rem;
}

/* <--- AUDIO PLAYER --->*/

.audio_player {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  right: 0;

  border-radius: 0;
}

/* <--- GENERAL --->*/

.img-full-width {
  width: 100%;
}

/* <--- OVERRIDE --->*/

.tick-text-inline {
  color: white;
}

.tick-credits {
  display: none;
}