.demio-pagination-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.demio-pagination-button {
  background: #FFFFFF;
  border: 1px solid #DEE4E8;
  border-radius: 4px;
  height: 32px;
  width: 32px;
  margin-right: 8px;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.25px;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;

  &:last-child {
    margin-right: 0;
  }

  &:hover:not(.--disabled),
  &.--current {
    color: #02BF6F;
    border-color: #02BF6F;
  }

  &:focus {
    outline: none;
  }

  &.--disabled {
    color: #9FA6AD;
    cursor: not-allowed;

    .demio-icon {
      fill: #9FA6AD;
    }
  }

  &.--small-number {
    font-size: 10px;
  }
}