.Pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;

  .pages {
    gap: 4px;
  }

  .Button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f2f2f2;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    color: #666669;

    i {
      width: 20px;
      height: 20px;
      font-size: 20px;

      &::before {
        display: block;
      }
    }

    &:hover {
      background: rgba(57, 59, 184, 0.09);
    }

    &._disabled {
      background: #f7f7f7;
      color: #cfcfcf;
      cursor: not-allowed;
      pointer-events: none;
    }
  }

  .page {
    .Button {
      height: 37px;
      width: 37px;
      background: transparent;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      color: #4e4d59;

      &:hover {
        background: rgba(57, 59, 184, 0.09);
      }

      &._active {
        border-radius: 8px;
        border: 1px solid #393bb8;
        background: rgba(57, 59, 184, 0.09);
      }
    }
  }
}
