/* Desktop */
/* Petit Desktop */
/* Tablet */
/* mobile */
.navigation-controls {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
}
.navigation-controls button,
.navigation-controls a {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: transparent;
  color: white;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.navigation-controls button .icon,
.navigation-controls a .icon {
  width: 2rem;
  height: 2rem;
}
.navigation-controls button:active, .navigation-controls button:focus, .navigation-controls button:hover,
.navigation-controls a:active,
.navigation-controls a:focus,
.navigation-controls a:hover {
  background-color: #00378a;
  color: white;
  outline: none;
}
.navigation-controls button,
.navigation-controls button svg,
.navigation-controls a,
.navigation-controls a svg {
  -webkit-transition: -webkit-transform cubic-bezier(0, 1, 0, 1) 0.2s;
  transition: -webkit-transform cubic-bezier(0, 1, 0, 1) 0.2s;
  transition: transform cubic-bezier(0, 1, 0, 1) 0.2s;
  transition: transform cubic-bezier(0, 1, 0, 1) 0.2s, -webkit-transform cubic-bezier(0, 1, 0, 1) 0.2s;
  will-change: transform;
}

.live,
.replay {
  background-color: #00378a;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  margin: 2rem;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.live:hover,
.replay:hover {
  background-color: #359ccc;
}

.wrapper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .wrapper-navigation {
    padding: 2rem;
  }
}
.wrapper-navigation form {
  margin-top: 4rem;
  margin-bottom: 4rem;
  -webkit-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.2);
  -ms-flex-preferred-size: 25rem;
      flex-basis: 25rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  z-index: 3;
  position: relative;
  text-align: center;
  padding: 1rem;
  background-color: white;
}