/**
*  @author Surton
*  @date 13.07.2018
*  @section pages-nav
*/

.header-nav__list-pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
  font-weight: 300;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          -webkit-flex-grow: 1;
          flex-grow: 1;
  height: 40px;
}

.header-nav__list-pages a {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          -webkit-flex-grow: 1;
          flex-grow: 1;
  height: 100%;
  line-height: 40px;
  font-size: 90%;
  color: rgba(15, 69, 199, 1);
  text-align: center;
  border-right: 1px solid #b7c7ee;
  text-decoration: none;
  -webkit-transition: background-color .2s, color .2s;
  -o-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
  cursor: pointer;
}

.fine-vision .header-nav__list-pages a {
  font-size: 100%;
  color: #000000;
  border-right-color: #000000;
}

.header-nav__list-pages a:first-child {
  border-left: 1px solid #b7c7ee;
}

.fine-vision .header-nav__list-pages a:first-child {
  border-left-color: #000000;
}

.header-nav__list-pages a:hover {
  background-color: rgba(15, 69, 199, 0.1);
}

.fine-vision .header-nav__list-pages a:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}