.loading {
    width: 256px;
    height: 32px;
}

.transparency {
    opacity: 0.8;
}

.pagerInfoWrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
}

.pager .pagerInfo {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 11px 13px;
  color: #3f4858;
  font-family: 'Gotham-Book', sans-serif;
  font-size: 16px;
  text-align: center;
  line-height: 16px;
  display: inline-block;
  float: left;
  height: 40px;
  min-height: 0;
  border-radius: 0;
}

.pager input.pagerInfo:not(.pager input.pagerInfo:focus)::placeholder {
  color: #3f4858;
  opacity: 1;
}

.pager input.pagerInfo:not(.pager input.pagerInfo:focus)::-ms-input-placeholder {
  color: #3f4858;
  opacity: 1;
}

.pager input.pagerInfo:not(.pager input.pagerInfo:focus):-ms-input-placeholder {
  color: #3f4858;
  opacity: 1;
}

.pager .pagerLeft, .pager .pagerRight {
  color: #3f4858;
  font-size: 12px;
  background: white;
  border: 1px solid #e0e0e0;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  float: left;
  cursor: pointer;
}

.pager .pagerLeft.inactive, .pager .pagerRight.inactive {
  opacity: 0.5;
  cursor: not-allowed;
}

.pager .pagerLeft {
  border-radius: 10px 0 0 10px;
  border-right: 0;
}

.pager .pagerRight {
  border-radius: 0 10px 10px 0;
  border-left: 0;
}

@media screen and (max-width: 500px) {
  .pager .pagerInfo {
    font-size: 14px;
    height: 34px;
    line-height: 12px;
  }

  .pager .pagerLeft, .pager .pagerRight {
    height: 34px;
    width: 34px;
    line-height: 34px;
  }
}
