/* блок выбора количества отображаемых результатов поиска на странице */
.select-box {
  cursor: pointer;
  position : relative;
  max-width:  20em;
  /* margin: 5em auto; */
  width: 100%;
}

.select,
.label {
  color: #414141;
  display: block;
  font: 400 17px/2em 'Source Sans Pro', sans-serif;
}

.select {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 5px 0;
  height: 40px;
  opacity: 0;
  /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; */
  background: none transparent;
  border: 0 none;
}
.select-box1 {
  background: #ececec;
}

.label {
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
}
.open .label::after {
   content: "▲";
}
.label::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 15px;
  border-left: 5px solid #fff;
}


/* пагинация */
.pagination a {
  display: inline-block;
  padding: 5px 10px;
  margin: 2px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
}

.pagination a.active {
  background-color: rgb(0, 159, 227);
  color: white;
}

.pagination a.active:hover {
  background-color: #237fca;
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination a:hover {
  background-color: #ddd;
}