* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.header {
  background-color: #000;
  padding: 8px 0;
}
.header h1 {
  text-align: center;
}
.header img:hover {
  opacity: 0.75;
}
.header__search {
  text-align: center;
  max-width: 768px;
  margin: 10px 5px;
}
.header__search input {
  width: 90%;
  padding: 8px;
  display: inline-block;
}
.header__search button {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  color: #fff;
  font-size: 20px;
  margin: 8px 0 0 8px;
  cursor: pointer;
}
.header__search button:hover {
  color: #191970;
  transition: 0.2s;
}
.header__nav {
  position: fixed;
  z-index: 999;
  bottom: 0;
  width: 100%;
}
.header__nav ul {
  border-top: #000 1px solid;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  text-align: center;
}
.header__nav li {
  flex: 1;
  padding: 20px 0;
  border-left: #000 1px solid;
  font-size: 12px;
  background-color: #fff;
}
.header__nav li a {
  border: none;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}
.header__nav li a:hover {
  color: #f93;
}
.header__nav li .logout__button {
  border: none;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}
.header__nav li .logout__button:hover {
  color: #f93;
}
.header__nav li .login__button {
  border: none;
  background-color: #fff;
  color: #000;
  font-size: 18px;
}
.header__nav li .login__button:hover {
  color: #f93;
}

.alert-success {
  background-color: #bdffc0;
  padding: 20px 0;
  text-align: center;
  font-size: 20px;
  color: #005f00;
}

.alert-danger {
  background-color: #fccece;
  padding: 20px 0;
  text-align: center;
  font-size: 20px;
  color: #5f0000;
}

@media (min-width: 768px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__inner h1 {
    padding: 15px 0 5px 15px;
  }
  .header__search {
    flex: 1;
    margin: 0 20px;
  }
  .header__search input {
    padding: 10px;
    width: 75%;
  }
  .header__nav {
    z-index: 9999;
    position: static;
    width: auto;
  }
  .header__nav ul {
    border: none;
    display: inline;
    margin: 0 20px;
  }
  .header__nav li {
    display: inline-block;
    margin: 0 10px;
    background-color: #000;
  }
  .header__nav li a {
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }
  .header__nav li .logout__button {
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }
  .header__nav li .login__button {
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 18px;
  }
}/*# sourceMappingURL=common.css.map */