a {
  color: #fc2c25;
  text-decoration: none;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

a:hover {
  color: #fc2c25;
}

*:focus {
  outline: #024f7e auto 5px;
}

a {
  color: #024f7e;
  text-decoration: none;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

a:hover {
  color: #fc2c25;
}

*:focus {
  outline: #024f7e auto 5px;
}

.toolbar {
  background-color: #f6f6f6;
  border-top: 1px solid #e3e3e3;
  bottom: 0;
  left: 0;
  padding: 0px 3px 0;
  position: fixed;
  width: 100%;
}

.toolbar__top {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.25s ease-in-out, margin 0.25s ease-in-out;
  -moz-transition: height 0.25s ease-in-out, margin 0.25s ease-in-out;
  -ms-transition: height 0.25s ease-in-out, margin 0.25s ease-in-out;
  -o-transition: height 0.25s ease-in-out, margin 0.25s ease-in-out;
  transition: height 0.25s ease-in-out, margin 0.25s ease-in-out;
}

.toolbar__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.toolbar__item {
  text-align: center;
  padding: 0 0 2px;
  position: relative;
  width: 25%;
}

.toolbar__link {
  color: #333;
  text-decoration: none;
}

.toolbar__link--active {
  color: #024f7e;
}

.toolbar__link:hover {
  text-decoration: none;
}

.toolbar__icon {
  font-size: 25px;
  vertical-align: middle;
}

.toolbar__button {
  border: none;
  background: none;
  font-size: 25px;
  font-weight: bold;
  vertical-align: middle;
}

.toolbar__title {
  display: block;
  font-size: 15px;
}

